Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nginx_proxy: Support longer domains name #3399

Merged
merged 3 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nginx_proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.7.0

- Modify `server_names_hash_bucket_size` to add support for longer domain names

## 3.6.0

- Add port to Host header to fix origin issues affecting ESPHome and other addons
Expand Down
2 changes: 1 addition & 1 deletion nginx_proxy/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 3.6.0
version: 3.7.0
hassio_api: true
slug: nginx_proxy
name: NGINX Home Assistant SSL proxy
Expand Down
2 changes: 1 addition & 1 deletion nginx_proxy/rootfs/etc/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ http {

server_tokens off;

server_names_hash_bucket_size 64;
server_names_hash_bucket_size 128;

# intermediate configuration
ssl_protocols TLSv1.2 TLSv1.3;
Expand Down