IvanHernanzC commented on issue #24472:
URL: https://github.com/apache/superset/issues/24472#issuecomment-1601116207
From postman call: https:/xxxx.com/api/v1/security/guest_token/ with barear
token ..
Return:
{
"errors": [
{
"message": "405 Method Not Allowed: The method is not allowed
for the requested URL.",
"error_type": "GENERIC_BACKEND_ERROR",
"level": "error",
"extra": {
"issue_codes": [
{
"code": 1011,
"message": "Issue 1011 - Superset encountered an
unexpected error."
}
]
}
}
]
}
And, the nginx configuration is:
server {
listen 443 ssl;
server_name xxxx.com;
ssl_certificate /etc/letsencrypt/live/kpis.kulteo.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/kpis.kulteo.com/privkey.pem;
location / {
proxy_pass http://superset:8088;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]