prod-proxy-pushcaller/data/nginx/proxy_host/6.conf
2025-07-14 15:58:44 +00:00

86 lines
1.1 KiB
Plaintext

# ------------------------------------------------------------
# dev.pushcaller.com
# ------------------------------------------------------------
map $scheme $hsts_header {
https "max-age=63072000; preload";
}
server {
set $forward_scheme http;
set $server "prod-app-pushcaller-2";
set $port 80;
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
server_name dev.pushcaller.com;
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-26/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-26/privkey.pem;
# Force SSL
include conf.d/include/force-ssl.conf;
access_log /data/logs/proxy-host-6_access.log proxy;
error_log /data/logs/proxy-host-6_error.log warn;
proxy_buffers 8 32k;
proxy_buffer_size 64k;
proxy_set_header X-Forwarded-Proto https;
location / {
# Proxy!
include conf.d/include/proxy.conf;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}