Commit 31d6128a authored by Joshua Tauberer's avatar Joshua Tauberer

nginx: explicitly listen on both ipv4 and ipv6 (works even if ipv6 isn't present)

parent 82cf5b72
......@@ -13,6 +13,7 @@ server {
# The secure HTTPS server.
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name $HOSTNAME;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment