File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ service_name: "{{ hostvars[inventory_hostname]['ansible_host'] | default(invento
8
8
nginx_error_level : " warn"
9
9
nginx_worker_processes : 1
10
10
nginx_gzip_status : " on"
11
+ # Increase upload limits to allow jenkins plugin uploads
12
+ nginx_max_body_size : 100M
13
+ nginx_send_timeout : 120s
11
14
12
15
# # variables unset by default
13
16
httpd_no_error_pages : false
Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ http {
31
31
types_hash_max_size 2048 ;
32
32
#server_names_hash_bucket_size 128;
33
33
34
+ client_body_in_file_only clean;
35
+ client_body_buffer_size 32K ;
36
+ client_max_body_size {{ nginx_max_body_size }};
37
+ send_timeout {{ nginx_send_timeout }};
38
+
34
39
include /etc/nginx/mime.types;
35
40
default_type application/octet-stream;
36
41
You can’t perform that action at this time.
0 commit comments