← back to Kamatera Nginx
sites-available/costarica.agentabrams.com
44 lines
server {
server_name costarica.agentabrams.com;
# Cloudflare HTML caching guard
location ~* \.html$ {
add_header Cache-Control 'no-store, must-revalidate' always;
proxy_pass http://127.0.0.1:9791;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
add_header Cache-Control 'no-store, must-revalidate' always;
proxy_pass http://127.0.0.1:9791;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "";
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/costarica.agentabrams.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/costarica.agentabrams.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = costarica.agentabrams.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
server_name costarica.agentabrams.com;
return 404; # managed by Certbot
}