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.

24 lines
586 B

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name uptime-kuma.windymuse.site;
ssl_certificate /ssl/fullchain.crt;
ssl_certificate_key /ssl/private.pem;
ssl_session_timeout 10m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
client_max_body_size 100m;
location / {
proxy_pass http://192.168.31.249:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}