1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 09:46:27 +00:00

Fix Nginx was not binding on IPv6

Problem: Nginx is only binding to the IPv4. Deployments with IPv6 require forking the image or overwriting `nginx.conf`.

Solution: Edit `nginx.conf` to listen to both IPv4 and IPv6 by making it listen on `[::]:80`.

Note: This may be related and contradictory to #54
This commit is contained in:
Hugo Herter
2019-12-05 14:18:14 +01:00
parent 6c548be161
commit b98d38cbed

View File

@@ -31,6 +31,8 @@ http {
}
server {
listen 80;
listen [::]:80;
server_name _;
root /var/www/wallabag/web;