added missing ; to nginx config

This commit is contained in:
Dean Perry 2018-10-31 12:39:48 +00:00 committed by GitHub
parent bbb15e8e2a
commit 3f1cb0567b

View File

@ -346,7 +346,7 @@ instance listening on localhost port 8000.
location /static { location /static {
autoindex on; autoindex on;
alias <path-to-paperless-static-directory> alias <path-to-paperless-static-directory>;
} }
@ -357,7 +357,7 @@ instance listening on localhost port 8000.
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8000 proxy_pass http://127.0.0.1:8000;
} }
} }