From 1e0e2648ce2e2198721c3c570ec78019c427ea84 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 27 May 2021 10:09:03 +0200 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 1dddd30..8fb2801 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -7,21 +7,21 @@ location / { client_max_body_size 50M; - proxy_pass http://127.0.0.1:__PORT__; + proxy_pass http://127.0.0.1:__PORT__/; proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Frame-Options SAMEORIGIN; - #proxy_buffers 256 16k; - #proxy_buffer_size 16k; - #proxy_read_timeout 600s; - #proxy_cache_revalidate on; - #proxy_cache_min_uses 2; - #proxy_cache_use_stale timeout; - #proxy_cache_lock on; - #proxy_http_version 1.1; + proxy_buffers 256 16k; + proxy_buffer_size 16k; + proxy_read_timeout 600s; + proxy_cache_revalidate on; + proxy_cache_min_uses 2; + proxy_cache_use_stale timeout; + proxy_cache_lock on; + proxy_http_version 1.1; # Include SSOWAT user panel. #include conf.d/yunohost_panel.conf.inc; @@ -29,23 +29,23 @@ location / { } location /ws/ { - proxy_pass http://127.0.0.1:__PORT__; + proxy_pass http://127.0.0.1:__PORT__/; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; - #client_max_body_size 50M; + client_max_body_size 50M; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Frame-Options SAMEORIGIN; - #proxy_buffers 256 16k; - #proxy_buffer_size 16k; - #client_body_timeout 60; - #send_timeout 300; - #lingering_timeout 5; - #proxy_connect_timeout 1d; - #proxy_send_timeout 1d; - #proxy_read_timeout 1d; + proxy_buffers 256 16k; + proxy_buffer_size 16k; + client_body_timeout 60; + send_timeout 300; + lingering_timeout 5; + proxy_connect_timeout 1d; + proxy_send_timeout 1d; + proxy_read_timeout 1d; } location /uploads/ {