summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2021-02-21 02:20:57 +0300
committerGitHub <[email protected]>2021-02-21 02:20:57 +0300
commitc2d9e21d37bf5605f02e4cf70a0fc305a09cf8ab (patch)
treeb4c36f278281a3243c6d13622213e9d3777fa74d
parent9076de3b846ae770ef8a5d17935248fcc200bb7b (diff)
parent18b01ec718e5ebc9d8da877a72f2fc7007be9789 (diff)
Merge pull request #29 from fblaese/ipv6
Make kvmd webui available via IPv6
-rw-r--r--configs/nginx/nginx.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/nginx/nginx.conf b/configs/nginx/nginx.conf
index 19e839b4..71775387 100644
--- a/configs/nginx/nginx.conf
+++ b/configs/nginx/nginx.conf
@@ -38,12 +38,14 @@ http {
#PROD server {
#PROD listen 80;
+#PROD listen [::]:80;
#PROD server_name localhost;
#PROD return 301 https://$host$request_uri;
#PROD }
server {
#PROD listen 443 ssl http2;
+#PROD listen [::]:443 ssl http2;
server_name localhost;
#PROD include /etc/kvmd/nginx/ssl.conf;