41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# code.nxshock.me -> 127.0.0.1:8005
|
|
server {
|
|
http2 on;
|
|
server_name code.nxshock.me;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8005;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection upgrade;
|
|
proxy_set_header Accept-Encoding gzip;
|
|
proxy_buffering off;
|
|
proxy_request_buffering off;
|
|
}
|
|
|
|
access_log /dev/null;
|
|
error_log /dev/null;
|
|
|
|
|
|
|
|
listen 443 ssl; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/nxshock.me/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/nxshock.me/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 = code.nxshock.me) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
server_name code.nxshock.me;
|
|
listen 80;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
}
|