Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 6a97a7f

Browse files
authored
Merge pull request #288 from linuxserver/hash-errors
Hash errors
2 parents 98a9902 + 5617845 commit 6a97a7f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ Below are the instructions for updating containers:
234234

235235
## Versions
236236

237+
* **07.04.19:** - Add `proxy_headers_hash_bucket_size 128;` & `proxy_headers_hash_max_size 1024;` to `proxy.conf` & `variables_hash_max_size 2048;` to `nginx.conf` (existing users need to manually update).
237238
* **25.03.19:** - Rebase aarch64 image back to 3.8 due to python issues (specifically with fail2ban), switch packages to python 3 on amd64 and armhf, clean up pip/python cache to shrink image size.
238239
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
239240
* **10.03.19:** - Add TLSv1.3 to ssl.conf.

root/defaults/nginx.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2018/01/29 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/nginx.conf
1+
## Version 2018/04/07 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/nginx.conf
22

33
user abc;
44
worker_processes 4;
@@ -21,6 +21,8 @@ http {
2121
tcp_nodelay on;
2222
keepalive_timeout 65;
2323
types_hash_max_size 2048;
24+
variables_hash_max_size 2048;
25+
2426
# server_tokens off;
2527

2628
# server_names_hash_bucket_size 64;

root/defaults/proxy.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2019/01/21 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/proxy.conf
1+
## Version 2019/04/07 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/proxy.conf
22

33
client_body_buffer_size 128k;
44

@@ -25,3 +25,5 @@ proxy_set_header Connection "";
2525
proxy_cache_bypass $cookie_session;
2626
proxy_no_cache $cookie_session;
2727
proxy_buffers 32 4k;
28+
proxy_headers_hash_bucket_size 128;
29+
proxy_headers_hash_max_size 1024;

0 commit comments

Comments
 (0)