We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c74aa9 + 7875cff commit f2d015aCopy full SHA for f2d015a
nginx.conf
@@ -66,6 +66,17 @@ http {
66
proxy_buffering off;
67
}
68
69
+ # Dashboard static assets (no authentication)
70
+ location ^~ /dashboard/static/ {
71
+ proxy_pass http://localhost:8080;
72
+ proxy_set_header Host $host;
73
+ proxy_set_header X-Real-IP $remote_addr;
74
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
75
+ proxy_set_header X-Forwarded-Proto https;
76
+ proxy_set_header X-Forwarded-Port 443;
77
+ proxy_buffering off;
78
+ }
79
+
80
# Dagster homepage entry point
81
location = /dagster {
82
# Basic authentication for Dagster access
0 commit comments