You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
I noticed that for longer server names there will be an nginx error on ddev start
fails with nginx: [emerg] could not build server_names_hash, you should increase server_names_hash_bucket_size: 64
I solved it by increasing the config value to 128
# important, otherwise nginx fails with "[emerg] could not build server_names_hash,
# you should increase server_names_hash_bucket_size: 64"
server_names_hash_bucket_size 128;
server {
server_name frontend.ddev-laravel-breeze-sveltekit.ddev.site;
Hi,
I noticed that for longer server names there will be an nginx error on
ddev start
I solved it by increasing the config value to 128
https://github.com/mandrasch/ddev-laravel-breeze-sveltekit/blob/main/.ddev/nginx_full/frontend.conf
This is also the default DDEV value (https://github.com/ddev/ddev/blob/d824ffe36ff3378b1252d699411a7f6ae021f88c/containers/ddev-nginx-proxy-router/etc/nginx/nginx.conf#L14)
Just wanted to let you know, cheers!
The text was updated successfully, but these errors were encountered: