38 lines
974 B
Plaintext
38 lines
974 B
Plaintext
server {
|
|
listen 80;
|
|
server_name lounge.secretbee.buzz;
|
|
|
|
location / {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name lounge.secretbee.buzz;
|
|
|
|
limit_req zone=mylimit burst=20;
|
|
|
|
add_header Strict-Transport-Security "max-age=31536000, includeSubDomains" always;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/lounge.secretbee.buzz/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/lounge.secretbee.buzz/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:9000/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_read_timeout 1d;
|
|
}
|
|
|
|
location /folder/ {
|
|
proxy_pass http://127.0.0.1:9000/uploads/;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
}
|
|
}
|