jocavinashi commented on issue #22005:
URL: https://github.com/apache/superset/issues/22005#issuecomment-1642347248

   Add this in superset_config.py
   `HTTP_HEADERS = {}`
   And If that also does not work then maybe your nginx is creating 
x-frame-options to samesite. So add  proxy_hide_header X-Frame-Options; to your 
nginx block.
   `location / {
       proxy_pass http://localhost:8000;
       proxy_http_version 1.1;
       proxy_set_header Upgrade $http_upgrade;
       proxy_set_header Connection "Upgrade";
       proxy_set_header Host $host;
       proxy_hide_header X-Frame-Options;
       }`
   This should work


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

Reply via email to