59 lines
2.0 KiB
Plaintext
59 lines
2.0 KiB
Plaintext
|
server {
|
||
|
listen 80 default_server;
|
||
|
server_name _;
|
||
|
return 301 https://$host$request_uri;
|
||
|
}
|
||
|
|
||
|
map $http_x_forwarded_proto $proxy_x_forwarded_proto {
|
||
|
default $http_x_forwarded_proto;
|
||
|
'' $scheme;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
server_name loop.example.com;
|
||
|
|
||
|
ssl_certificate /etc/nginx/ssl/server.crt;
|
||
|
ssl_certificate_key /etc/nginx/ssl/server.key;
|
||
|
ssl_session_timeout 5m;
|
||
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
# Please update the ciphers in this file every 6 months.
|
||
|
# https://ssl-config.mozilla.org/
|
||
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
||
|
ssl_prefer_server_ciphers off;
|
||
|
|
||
|
location ~ /api/v[0-9]+/(users/)?websocket$ {
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header X-Forwarded-Ssl on;
|
||
|
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 $proxy_x_forwarded_proto;
|
||
|
proxy_set_header X-Frame-Options SAMEORIGIN;
|
||
|
proxy_buffers 256 16k;
|
||
|
proxy_buffer_size 16k;
|
||
|
proxy_read_timeout 600s;
|
||
|
proxy_pass http://loop:8065;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
gzip on;
|
||
|
proxy_set_header X-Forwarded-Ssl on;
|
||
|
|
||
|
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 $proxy_x_forwarded_proto;
|
||
|
proxy_set_header X-Frame-Options SAMEORIGIN;
|
||
|
proxy_buffers 256 16k;
|
||
|
proxy_buffer_size 16k;
|
||
|
proxy_read_timeout 600s;
|
||
|
proxy_pass http://loop:8065;
|
||
|
}
|
||
|
}
|