ipv6: always serve https

This commit is contained in:
chandi 2020-07-30 13:02:00 +02:00
parent 8956a60b3b
commit 8b2eb9a177

View File

@ -5,6 +5,11 @@ map $http_upgrade $connection_upgrade {
server {
listen 443 ssl http2 default_server;
# we at still serve https via IPv6 for the
# case that an AAAA record is set.
listen [::]:443 ssl http2 default_server;
server_name _;
include resty-server-https.conf;