move proxy_buffering off;

This commit is contained in:
David Harder 2020-09-28 21:42:43 -05:00 committed by GitHub
parent a7aa17e2fc
commit 4f73cb9b6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,6 @@ location ^~ /boinc/ {
#include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf;
proxy_buffering off;
resolver 127.0.0.11 valid=30s;
set $upstream_app boinc;
set $upstream_port 8080;
@ -25,4 +24,5 @@ location ^~ /boinc/ {
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
rewrite /boinc(.*) $1 break;
}
proxy_buffering off;
}