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 2021/12/22 14:50:41 UTC

[GitHub] [superset] jaspreetjhans opened a new issue #17850: Issue configuring apache superset with Nginx as a reverse proxy

jaspreetjhans opened a new issue #17850:
URL: https://github.com/apache/superset/issues/17850


   ### Environment
   
   (please complete the following information):
   
   - browser type and version:                                 IE & Chrome
   - superset version: `superset version`                 1.3
   - python version: `python --version`                   Python 3.9.9  
   - node.js version: `node -v`                                 v10.24.1
   - any feature flags active:
   
   
   My Configuration
   
   # Redirect requests to odoo backend server
           location / {
               proxy_redirect off;
               proxy_cookie_path / "/; Secure; HTTPOnly; SameSite=strict;";
               proxy_pass http://odoo;
           }
   
           location ~* /web/static/ {
               proxy_cache_valid 200 90m;
               proxy_buffering on;
               expires 7d;
               add_header Cache-Control "public, no-transform";
               proxy_pass http://odoo;
           }
   
   # Redirect superset requests
              location /analytics {
               proxy_redirect off;
               proxy_cookie_path / "/; Secure; HTTPOnly; SameSite=strict;";
               proxy_pass  http://superset/;
           }
           location ~ ^/(static|superset|sqllab|savedqueryview|druid|tablemodelview|databaseasync|dashboardmodelview|slicemodelview|dashboardasync|druiddatasourcemodelview|api|csstemplateasyncmodelview|chart|savedqueryviewapi|r|datasource|sliceaddview|login) {
                        proxy_pass  http://superset;
           }
   
   Issue:
   1. After above configuration unable to publish dashboard in IFFRAMES
   2. Some of links stops working for my mail portal 
   


-- 
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