Browse Source

Listen on IPv4 and IPv6 (#394)

Uncomment the listen directive for IPv6
pull/389/head
Joseph Gigantino 4 months ago committed by GitHub
parent
commit
fc64c8d308
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docker-unified/hbs/nginx-config.hbs

2
docker-unified/hbs/nginx-config.hbs

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
server {
listen {{{String.Coalesce env.BW_PORT_HTTP "8080"}}} default_server;
#listen [::]:{{{String.Coalesce env.BW_PORT_HTTP "8080"}}} default_server;
listen [::]:{{{String.Coalesce env.BW_PORT_HTTP "8080"}}} default_server;
server_name {{{String.Coalesce env.BW_DOMAIN "localhost"}}};
{{#if (String.Equal env.BW_ENABLE_SSL "true")}}

Loading…
Cancel
Save