-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
Hello,
We're having the following issue.
We setted our config.json like this:
{
"restApiRoot": "/api",
"host": "0.0.0.0",
"aclErrorStatus": 403,
"port": 3389,
"remoting": {
"context": {
"enableHttpContext": true
},
"rest": {
"normalizeHttpPath": true,
"xml": false
},
"json": {
"strict": true,
"limit": "100kb"
},
"urlencoded": {
"extended": true,
"limit": "100kb"
},
"cors": {
"origin": true,
"credentials": true
},
"errorHandler": {
"disableStackTrace": false
}
},
"legacyExplorer": false
}
But we're still receiving those kind of 401 errors:
{
"error": {
"name": "Error",
"status": 401,
"message": "Authorization Required",
"statusCode": 401,
"stack": "....."
}
}