From b98d38cbedee532d74d489d94a9b5fb34be7366a Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Thu, 5 Dec 2019 14:18:14 +0100 Subject: [PATCH] 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 --- root/etc/nginx/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/root/etc/nginx/nginx.conf b/root/etc/nginx/nginx.conf index 6186c99..e6e49fd 100644 --- a/root/etc/nginx/nginx.conf +++ b/root/etc/nginx/nginx.conf @@ -31,6 +31,8 @@ http { } server { + listen 80; + listen [::]:80; server_name _; root /var/www/wallabag/web;