diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index eda47ef580d..e60a07fbdf8 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -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;