listen configs

This commit is contained in:
Maxim Devaev
2021-11-12 01:49:51 +03:00
parent aa2de59ff5
commit 8e60b84288
6 changed files with 17 additions and 13 deletions

View File

@@ -0,0 +1,2 @@
listen 80;
listen [::]:80;

View File

@@ -0,0 +1,2 @@
listen 443 ssl http2;
listen [::]:443 ssl http2;

View File

@@ -36,19 +36,16 @@ http {
include /etc/kvmd/nginx/kvmd.ctx-http.conf;
include /usr/share/kvmd/extras/*/nginx.ctx-http.conf;
#PROD server {
#PROD listen 80;
#PROD listen [::]:80;
#PROD server_name localhost;
#PROD return 301 https://$host$request_uri;
#PROD }
server {
server_name localhost;
include /etc/kvmd/nginx/listen-http.conf;
include /etc/kvmd/nginx/redirect-to-https.conf;
}
server {
#PROD listen 443 ssl http2;
#PROD listen [::]:443 ssl http2;
server_name localhost;
#PROD include /etc/kvmd/nginx/ssl.conf;
include /etc/kvmd/nginx/listen-https.conf;
include /etc/kvmd/nginx/ssl.conf;
include /etc/kvmd/nginx/kvmd.ctx-server.conf;
include /usr/share/kvmd/extras/*/nginx.ctx-server.conf;
}

View File

@@ -0,0 +1 @@
return 301 https://$host$request_uri;