Skip to content

Commit

Permalink
Make longer server names possible (#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
janhelke authored and rfay committed Mar 18, 2019
1 parent f0a57dd commit 671e1b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions containers/ddev-router/nginx.tmpl
Expand Up @@ -38,6 +38,9 @@ map $http_upgrade $proxy_connection {
'' close;
}

# Apply fix for very long server names
server_names_hash_bucket_size 128;

# Default dhparam
# ssl_dhparam /etc/nginx/dhparam/dhparam.pem;

Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -67,7 +67,7 @@ var BgsyncTag = "v1.6.0" // Note that this can be overridden by make
var RouterImage = "drud/ddev-router"

// RouterTag defines the tag used for the router.
var RouterTag = "v1.6.0" // Note that this can be overridden by make
var RouterTag = "20190309_longer_server_names" // Note that this can be overridden by make

var SSHAuthImage = "drud/ddev-ssh-agent"

Expand Down

0 comments on commit 671e1b1

Please sign in to comment.