akelai opened a new issue #10708:
URL: https://github.com/apache/incubator-superset/issues/10708


   Superset version 0.35.2
   
   _Premise:_
   You know, "tabs" inserted in a dashboard show when mouse hovered that little 
"chain" icon, that when clicked generates and shows a URL directly pointing to 
that tab, with a copy icon and a mail icon. (And besides tabs, there are also 
other places where these URLs are generated and shown).
   
   _Problem:_
   That's great, but the URLs that I get are like 
"http://**127.0.0.1:8088**/r/169"; (the last part changes of course).
   The problem is, instead of "127.0.0.1", I should get there the actual domain 
where Superset is reached (say, "superset.test.com"), otherwise those copied 
urls won't work.
   
   _Notes:_
   I have the setup explained in the docs, with "gunicorn ... -b 0.0.0.0:8088\ 
..." and NGINX with:
   ```
   ...
   server {
       listen 80;    
       listen [::]:80;
       server_name superset.test.com;
   
       location / {
           proxy_buffers 16 4k;
           proxy_buffer_size 2k;
           proxy_pass http://127.0.0.1:8088;
       }
   }
   ...
   ```
   _Questions:_
   Is that a bug, or something's wrong on my side? In the latter case, do you 
have suggestions on how to solve it?


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

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to