86 lines
1.3 KiB
Plaintext
86 lines
1.3 KiB
Plaintext
# ------------------------------------------------------------
|
|
# np-dms.work, www.np-dms.work
|
|
# ------------------------------------------------------------
|
|
|
|
|
|
|
|
map $scheme $hsts_header {
|
|
https "max-age=63072000; preload";
|
|
}
|
|
|
|
server {
|
|
set $forward_scheme http;
|
|
set $server "dms_landing";
|
|
set $port 80;
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
|
|
server_name np-dms.work www.np-dms.work;
|
|
http2 off;
|
|
|
|
|
|
# Let's Encrypt SSL
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
include conf.d/include/ssl-cache.conf;
|
|
include conf.d/include/ssl-ciphers.conf;
|
|
ssl_certificate /etc/letsencrypt/live/npm-2/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/npm-2/privkey.pem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Block Exploits
|
|
include conf.d/include/block-exploits.conf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Force SSL
|
|
include conf.d/include/force-ssl.conf;
|
|
|
|
|
|
|
|
|
|
|
|
access_log /data/logs/proxy-host-1_access.log proxy;
|
|
error_log /data/logs/proxy-host-1_error.log warn;
|
|
|
|
add_header X-Content-Type-Options nosniff always;
|
|
add_header X-Frame-Options SAMEORIGIN always;
|
|
add_header Referrer-Policy "no-referrer-when-downgrade" always;
|
|
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Proxy!
|
|
include conf.d/include/proxy.conf;
|
|
}
|
|
|
|
|
|
# Custom
|
|
include /data/nginx/custom/server_proxy[.]conf;
|
|
}
|