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:
utf 2024-08-23 12:56:03 +02:00 committed by GitHub
parent 22b7f6dd7d
commit 5c9ee1a988
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,7 @@
server { server {
listen 80;
listen [::]:80;
location / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;