You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/05/31 06:40:19 UTC

[GitHub] [superset] zufolo441 commented on issue #20213: Setting up Apache Superset with Nginx as Reverse Proxy(prefixed location and authentication)

zufolo441 commented on issue #20213:
URL: https://github.com/apache/superset/issues/20213#issuecomment-1141724911

   Hi, 
   here is my nginx reverse proxy config for Superset. It's very simple: 
           location / {
                   proxy_pass http://192.168.1.75:8088;
                   proxy_set_header Host $host;
                   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                   proxy_redirect off;
           }
   
   replace location with your desired location.
   
   I have too the problem of anonymous user: I cannot see anything if I use anonymous window of browser....
   


-- 
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: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org