summaryrefslogtreecommitdiff
path: root/config/nginx-default.conf
diff options
context:
space:
mode:
authorJan Friedli2020-03-28 15:17:45 +0100
committerJan Friedli2020-05-09 21:21:47 +0200
commite53ea9a05167ac9b93594bb1335cae1f2a0afe1f (patch)
tree4480bc6e0e9d2121287f92e569f8f41db913fe14 /config/nginx-default.conf
parent40d4fdad9e8ce5872adf18100196fa77044642c1 (diff)
use tmpfs for file storage
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 fd3e2f1..52c2fe2 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:/var/www/mat2-web/mat2-web.sock; 12 uwsgi_pass unix:/tmp/uwsgi.sock;
13 } 13 }
14} 14}