Update vanilla nginx conf template

Update vanilla nginx conf template to include the dash manager at /manager. This way, the manager will be enabled by default with wand, and clear up confusion.
This commit is contained in:
Blueyzachary 2020-08-03 10:23:38 -06:00 committed by GitHub
parent c8439f3861
commit 4ff6ea56fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,6 +103,15 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /manager {
proxy_pass http://dash:3000/manager;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
server {