This commit is contained in:
Eric Nemchik 2020-09-25 11:22:37 -05:00
parent fda885d4c3
commit 20fe3752cb
19 changed files with 59 additions and 105 deletions

View file

@ -17,20 +17,18 @@ location ^~ /jenkins/ {
# enable for Authelia, also enable authelia-server.conf in the default site config
#include /config/nginx/authelia-location.conf;
# This is the maximum upload size
client_max_body_size 10m;
sendfile off;
include /config/nginx/proxy.conf;
proxy_max_temp_file_size 0;
proxy_temp_file_write_size 64k;
proxy_request_buffering off;
proxy_buffering off;
resolver 127.0.0.11 valid=30s;
set $upstream_app jenkins;
set $upstream_port 8080;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
# This is the maximum upload size
client_max_body_size 10m;
sendfile off;
proxy_max_temp_file_size 0;
proxy_temp_file_write_size 64k;
proxy_request_buffering off;
proxy_buffering off;
}