1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00

Bugfix nginx.conf

This commit is contained in:
JensDiemer 2020-12-29 12:51:24 +01:00
parent 29ca95f076
commit 5350949560

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__;
}