File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ Available variables are listed below with their default values (you can also see
79
79
| -------- | ----------- |
80
80
| nginx_hsts_enable | Default: ` false `
81
81
| nginx_http2_enable | Default: ` true `
82
- | nginx_http2_push_preload | Default: ` true `
83
82
| nginx_keepalive_requests | Default: ` 100 `
84
83
| nginx_keepalive_timeout | Default: ` 30 `
85
84
| nginx_multi_accept | Default: ` true `
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ nginx_gzip_min_length: 256
71
71
72
72
nginx_hsts_enable : false
73
73
nginx_http2_enable : true
74
- nginx_http2_push_preload : false
75
74
nginx_keepalive_requests : 100
76
75
nginx_keepalive_timeout : 30
77
76
nginx_multi_accept : true
Original file line number Diff line number Diff line change 50
50
server_names_hash_bucket_size 128;
51
51
tcp_nodelay {{ "on" if nginx_tcp_nodelay | bool else "off" }};
52
52
tcp_nopush {{ "on" if nginx_tcp_nopush | bool else "off" }};
53
- http2_push_preload {{ "on" if nginx_http2_push_preload | bool else "off" }};
54
53
55
54
# Client
56
55
client_body_buffer_size {{ nginx_client_body_buffer_size }};
You can’t perform that action at this time.
0 commit comments