fix(docker): Configure nginx for consistent port mapping and hot reloading (#32362)

This commit is contained in:
Vedant Prajapati
2025-02-24 11:53:51 -05:00
committed by GitHub
parent 22fe985cfc
commit 0f07d78e01

View File

@@ -112,6 +112,12 @@ http {
proxy_set_header Host $host;
}
location /static {
proxy_pass http://host.docker.internal:9000; # Proxy to superset-node
proxy_http_version 1.1;
proxy_set_header Host $host;
}
location / {
proxy_pass http://superset_app;
proxy_set_header Host $host;