43 lines
1.1 KiB
Text
Executable file
43 lines
1.1 KiB
Text
Executable file
server {
|
|
client_max_body_size 64M;
|
|
access_log /var/log/nginx/boards.access.log combined;
|
|
|
|
root /var/www/boards/;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name boards.zzls.xyz;
|
|
|
|
location /api/socket {
|
|
proxy_pass http://localhost:8000/api/socket;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8000/;
|
|
}
|
|
|
|
listen 443 ssl; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/boards.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/boards.zzls.xyz/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 = boards.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name boards.zzls.xyz;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
}
|