Update example.nginx.conf

Updated the location block for "/api/config" to point directly to the node.js server @ localhost:3000
This commit is contained in:
Falgn0n 2017-12-24 12:13:28 +02:00 committed by GitHub
parent cfc9ce33d6
commit f362aac246
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,9 +66,12 @@ server {
rewrite ^/customize/(.*)$ $1 break; rewrite ^/customize/(.*)$ $1 break;
try_files /customize/$uri /customize.dist/$uri; try_files /customize/$uri /customize.dist/$uri;
} }
location = /api/config { location = /api/config {
default_type text/javascript; proxy_pass http://localhost:3000;
rewrite ^.*$ /customize/api/config break; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
} }
location ^~ /blob/ { location ^~ /blob/ {