Fix nginx not configuring on some domains

This fixes the following error:

```
nginx: [emerg] could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
```

It occurs while reloading nginx after updating the certificates
if your domain name is strange enough I suppose. This causes
nginx to be stuck in "snikket is starting up" mode, because it
cannot reload its config. When restarting the container, it would
probably crash completely.

See-Also: https://stackoverflow.com/a/13906493/1248008
This commit is contained in:
Jonas Schäfer 2021-01-31 16:02:24 +01:00
parent a51e613627
commit 34b015b86e
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ http {
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;