bugfix nginx config

This commit is contained in:
JensDiemer 2021-01-17 11:47:19 +01:00
parent c4a0e71ee6
commit c5d152ac55

View file

@ -12,7 +12,7 @@ location __PATH__/static/ {
# expires 30d;
#}
location / {
location __PATH__/ {
# https://github.com/benoitc/gunicorn/blob/master/examples/nginx.conf
# this is needed if you have file import via upload enabled
@ -30,5 +30,5 @@ location / {
proxy_connect_timeout 30;
proxy_redirect off;
proxy_pass http://127.0.0.1:__PORT__/;
proxy_pass http://127.0.0.1:__PORT__;
}