Update example.nginx.conf
Updated the location block for "/api/config" to point directly to the node.js server @ localhost:3000pull/1/head
parent
cfc9ce33d6
commit
f362aac246
|
@ -66,11 +66,14 @@ server {
|
|||
rewrite ^/customize/(.*)$ $1 break;
|
||||
try_files /customize/$uri /customize.dist/$uri;
|
||||
}
|
||||
location = /api/config {
|
||||
default_type text/javascript;
|
||||
rewrite ^.*$ /customize/api/config break;
|
||||
}
|
||||
|
||||
location = /api/config {
|
||||
proxy_pass http://localhost:3000;
|
||||
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/ {
|
||||
try_files $uri =404;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue