Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ------------------------------------------------------------
- # heresygaming.com, www.heresygaming.com
- # ------------------------------------------------------------
- server {
- set $forward_scheme http;
- set $server "192.168.1.115";
- set $port 8082;
- listen 80;
- #listen [::]:80;
- listen 443 ssl http2;
- #listen [::]:443;
- server_name heresygaming.com www.heresygaming.com;
- # 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-1/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/npm-1/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;
- location / {
- root /data/heresygaming.com;
- }
- # Custom
- include /data/nginx/custom/server_proxy[.]conf;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement