88 lines
1.5 KiB
Text
88 lines
1.5 KiB
Text
# ------------------------------------------------------------
|
|
# pve.ganocloud.duckdns.org
|
|
# ------------------------------------------------------------
|
|
|
|
|
|
server {
|
|
set $forward_scheme https;
|
|
set $server "192.168.2.33";
|
|
set $port 8006;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
|
|
server_name pve.ganocloud.duckdns.org;
|
|
|
|
|
|
# Let's Encrypt SSL
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
include conf.d/include/ssl-ciphers.conf;
|
|
ssl_certificate /etc/letsencrypt/live/npm-7/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/npm-7/privkey.pem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
|
|
add_header Strict-Transport-Security "max-age=63072000;includeSubDomains; preload" always;
|
|
|
|
|
|
|
|
|
|
|
|
# Force SSL
|
|
include conf.d/include/force-ssl.conf;
|
|
|
|
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $http_connection;
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
access_log /data/logs/proxy-host-3_access.log proxy;
|
|
error_log /data/logs/proxy-host-3_error.log warn;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
|
|
|
|
|
|
|
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
|
|
add_header Strict-Transport-Security "max-age=63072000;includeSubDomains; preload" always;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $http_connection;
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
# Proxy!
|
|
include conf.d/include/proxy.conf;
|
|
}
|
|
|
|
|
|
# Custom
|
|
include /data/nginx/custom/server_proxy[.]conf;
|
|
}
|
|
|