Skip to content

Commit bebd091

Browse files
authored
NGX-868: Remove obsoleted nginx_http2_push_preload directive (#33)
1 parent e46eef6 commit bebd091

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Available variables are listed below with their default values (you can also see
7979
| -------- | ----------- |
8080
| nginx_hsts_enable | Default: `false`
8181
| nginx_http2_enable | Default: `true`
82-
| nginx_http2_push_preload | Default: `true`
8382
| nginx_keepalive_requests | Default: `100`
8483
| nginx_keepalive_timeout | Default: `30`
8584
| nginx_multi_accept | Default: `true`

defaults/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ nginx_gzip_min_length: 256
7171

7272
nginx_hsts_enable: false
7373
nginx_http2_enable: true
74-
nginx_http2_push_preload: false
7574
nginx_keepalive_requests: 100
7675
nginx_keepalive_timeout: 30
7776
nginx_multi_accept: true

templates/etc/nginx/nginx.conf.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ http {
5050
server_names_hash_bucket_size 128;
5151
tcp_nodelay {{ "on" if nginx_tcp_nodelay | bool else "off" }};
5252
tcp_nopush {{ "on" if nginx_tcp_nopush | bool else "off" }};
53-
http2_push_preload {{ "on" if nginx_http2_push_preload | bool else "off" }};
5453

5554
# Client
5655
client_body_buffer_size {{ nginx_client_body_buffer_size }};

0 commit comments

Comments
 (0)