From 10183ca4f7deba6cf04bf00092d7f6112bf64013 Mon Sep 17 00:00:00 2001 From: opi Date: Fri, 7 Aug 2020 14:30:47 +0200 Subject: [PATCH] Recommended proxy_http version for keepalive connections --- conf/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index a6901b6..ee2852b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -12,6 +12,11 @@ location __PATH__/ { proxy_buffering off; more_set_headers "X-Frame-Options : ALLOWALL"; + # Recommended proxy_http version for keepalive connections + # https://github.com/ether/etherpad-lite/wiki/How-to-put-Etherpad-Lite-behind-a-reverse-Proxy#nginx + proxy_http_version 1.1; + + # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; }