summaryrefslogtreecommitdiff
path: root/config/nginx-default.conf
diff options
context:
space:
mode:
authorJan Friedli2020-03-29 14:35:32 +0200
committerJan Friedli2020-05-09 21:21:48 +0200
commitacb6694f8215ed09f83099196aa2165ba2c9dbd8 (patch)
tree013aac524e535ad7c7342758c7968978e2baa1d7 /config/nginx-default.conf
parent465f1151d963dced746da0e7d6c3dc1a0bd5b8df (diff)
moved socket file and nginx pid to /tmpfs
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..5abfe22 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:/tmpfs/uwsgi.sock;
13 } 13 }
14} 14}