Fix IPv6 support for the Docker container (#1884)
* Fix `docker-nginx.conf` indentation * Listen on IPv4 and IPv6 inside Docker
This commit is contained in:
parent
22b7f6dd7d
commit
5c9ee1a988
1 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,7 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
|
||||
|
|
Loading…
Reference in a new issue