GitHub user joacosnchz added a comment to the discussion: Embedded Dashboard:
Gray screen after loader
> I am seeing the same issue, did you manage to find a fix?
Hi Richard. I used the following turnaround: configure another nginx server
that proxies to the superset root and use that to embed the dashboard instead
of a prefixed URL.
```
server {
listen 8088;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://superset:8088/;
}
}
```
GitHub link:
https://github.com/apache/superset/discussions/32198#discussioncomment-12568566
----
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]