summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/nginx-default.conf2
-rw-r--r--config/nginx.conf3
-rw-r--r--config/uwsgi.config2
3 files changed, 3 insertions, 4 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}
diff --git a/config/nginx.conf b/config/nginx.conf
index bd4770b..385f28f 100644
--- a/config/nginx.conf
+++ b/config/nginx.conf
@@ -1,5 +1,5 @@
1worker_processes auto; 1worker_processes auto;
2pid /tmp/nginx.pid; 2pid /tmpfs/nginx.pid;
3include /etc/nginx/modules-enabled/*.conf; 3include /etc/nginx/modules-enabled/*.conf;
4 4
5events { 5events {
@@ -13,7 +13,6 @@ http {
13 # Basic Settings 13 # Basic Settings
14 ## 14 ##
15 15
16 sendfile on;
17 tcp_nopush on; 16 tcp_nopush on;
18 tcp_nodelay on; 17 tcp_nodelay on;
19 keepalive_timeout 65; 18 keepalive_timeout 65;
diff --git a/config/uwsgi.config b/config/uwsgi.config
index 56e0508..93441ed 100644
--- a/config/uwsgi.config
+++ b/config/uwsgi.config
@@ -13,7 +13,7 @@ gid = 101
13harakiri = 30 13harakiri = 30
14die-on-term = true 14die-on-term = true
15 15
16socket = /tmp/uwsgi.sock 16socket = /tmpfs/uwsgi.sock
17chmod-socket = 774 17chmod-socket = 774
18plugins = python3 18plugins = python3
19 19