You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.0 KiB
70 lines
2.0 KiB
3 years ago
|
upstream focalboard {
|
||
|
server localhost:8000;
|
||
|
keepalive 32;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
|
||
|
server_name focalboard.noobtoroot.xyz;
|
||
|
|
||
|
location ~ /ws/* {
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection "upgrade";
|
||
|
client_max_body_size 50M;
|
||
|
proxy_set_header Host $http_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_set_header X-Frame-Options SAMEORIGIN;
|
||
|
proxy_buffers 256 16k;
|
||
|
proxy_buffer_size 16k;
|
||
|
client_body_timeout 60;
|
||
|
send_timeout 300;
|
||
|
lingering_timeout 5;
|
||
|
proxy_connect_timeout 1d;
|
||
|
proxy_send_timeout 1d;
|
||
|
proxy_read_timeout 1d;
|
||
|
proxy_pass http://localhost:8000;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
client_max_body_size 50M;
|
||
|
proxy_set_header Connection "";
|
||
|
proxy_set_header Host $http_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_set_header X-Frame-Options SAMEORIGIN;
|
||
|
proxy_buffers 256 16k;
|
||
|
proxy_buffer_size 16k;
|
||
|
proxy_read_timeout 600s;
|
||
|
proxy_cache_revalidate on;
|
||
|
proxy_cache_min_uses 2;
|
||
|
proxy_cache_use_stale timeout;
|
||
|
proxy_cache_lock on;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_pass http://localhost:8000;
|
||
|
}
|
||
|
|
||
|
listen 443 ssl; # managed by Certbot
|
||
|
ssl_certificate /etc/letsencrypt/live/focalboard.noobtoroot.xyz/fullchain.pem; # managed by Certbot
|
||
|
ssl_certificate_key /etc/letsencrypt/live/focalboard.noobtoroot.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 = focalboard.noobtoroot.xyz) {
|
||
|
return 301 https://$host$request_uri;
|
||
|
} # managed by Certbot
|
||
|
|
||
|
|
||
|
listen 80;
|
||
|
|
||
|
server_name focalboard.noobtoroot.xyz;
|
||
|
return 404; # managed by Certbot
|
||
|
|
||
|
|
||
|
}
|