summaryrefslogtreecommitdiff
path: root/config/nginx-default.conf
diff options
context:
space:
mode:
authorJan Friedli2020-03-29 22:49:22 +0200
committerJan Friedli2020-05-09 21:21:49 +0200
commitac21ea756c18453954cdc87e9d33a9676ef48066 (patch)
tree06ab11f9c6fbdbed1f68519c18dd92d540dbac88 /config/nginx-default.conf
parente69d97e7ed58bb753cc89b0b8bf9a671b9dde296 (diff)
moved uwsgi.sock to /run/uwsgi
Diffstat (limited to 'config/nginx-default.conf')
-rw-r--r--config/nginx-default.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nginx-default.conf b/config/nginx-default.conf
index 52c2fe2..f4d8baa 100644
--- a/config/nginx-default.conf
+++ b/config/nginx-default.conf
@@ -9,6 +9,6 @@ server {
9 location / { try_files $uri @yourapplication; } 9 location / { try_files $uri @yourapplication; }
10 location @yourapplication { 10 location @yourapplication {
11 include uwsgi_params; 11 include uwsgi_params;
12 uwsgi_pass unix:/tmp/uwsgi.sock; 12 uwsgi_pass unix:/run/uwsgi/uwsgi.sock;
13 } 13 }
14} 14}