summaryrefslogtreecommitdiff
path: root/config/nginx.conf
diff options
context:
space:
mode:
authorJan Friedli2020-03-29 15:02:47 +0200
committerJan Friedli2020-05-09 21:21:48 +0200
commite69d97e7ed58bb753cc89b0b8bf9a671b9dde296 (patch)
tree42b583510137ae2c82ecc86205e31f240c882e64 /config/nginx.conf
parentacb6694f8215ed09f83099196aa2165ba2c9dbd8 (diff)
Revert "moved socket file and nginx pid to /tmpfs"
This reverts commit 4731cf86b1a1a380235948cc82b2ee5fbd35f11d.
Diffstat (limited to 'config/nginx.conf')
-rw-r--r--config/nginx.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/nginx.conf b/config/nginx.conf
index 385f28f..bd4770b 100644
--- a/config/nginx.conf
+++ b/config/nginx.conf
@@ -1,5 +1,5 @@
1worker_processes auto; 1worker_processes auto;
2pid /tmpfs/nginx.pid; 2pid /tmp/nginx.pid;
3include /etc/nginx/modules-enabled/*.conf; 3include /etc/nginx/modules-enabled/*.conf;
4 4
5events { 5events {
@@ -13,6 +13,7 @@ http {
13 # Basic Settings 13 # Basic Settings
14 ## 14 ##
15 15
16 sendfile on;
16 tcp_nopush on; 17 tcp_nopush on;
17 tcp_nodelay on; 18 tcp_nodelay on;
18 keepalive_timeout 65; 19 keepalive_timeout 65;