dsuarez commented on issue #35712:
URL: https://github.com/apache/superset/issues/35712#issuecomment-3430878113
Thanks for your kind answer, @dosu. Unfortunately, I could not make it work.
I changed the nginx.conf slightly to reflect your comment, with same result:
```
location /apps/superset {
proxy_pass http://superset_upstream;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Host $host;
}
```
Take into account the misdirection only happens when you click on new
dashboard...
My .env relevant part:
```
ENABLE_PROXY_FIX=True
SUPERSET_APP_ROOT="/apps/superset"
STATIC_ASSETS_PREFIX="/apps/superset"
APPLICATION_ROOT="/apps/superset"
```
--
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]