GitHub user masbayuw closed the discussion with a comment: Issue: Double HTTPS
in Redirect URL After Editing User/Role in Superset
I already have answer for it and solved my problem.
The probem is on the reverse proxy nginx configuration:
```
BEFORE
location / {
proxy_pass http://172.19.31.179:8088;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Host https:// $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Referer $http_referer;
proxy_set_header Origin $http_origin;
AFTER
location / {
proxy_pass http://172.19.31.179:8088;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Referer $http_referer;
proxy_set_header Origin $http_origin;
```
GitHub link:
https://github.com/apache/superset/discussions/32757#discussioncomment-12559249
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]