1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cryptpad_ynh.git synced 2024-09-03 18:26:14 +02:00
cryptpad_ynh/conf/nginx.conf

26 lines
902 B
Nginx Configuration File
Raw Normal View History

2024-05-24 16:10:56 +02:00
server_name __DOMAIN__ __SANDBOXDOMAIN__;
more_set_headers "Strict-Transport-Security: 'max-age=63072000; includeSubDomains' always";
2024-05-24 09:26:32 +02:00
location / {
2024-05-24 09:27:28 +02:00
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 150m;
2024-05-24 09:26:32 +02:00
2024-05-24 09:27:28 +02:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
}
2024-05-24 09:26:32 +02:00
2024-05-24 09:27:28 +02:00
location ^~ /cryptpad_websocket {
proxy_pass http://127.0.0.1:__PORT_SOCKET__;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2024-05-24 09:26:32 +02:00
2024-05-24 09:27:28 +02:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
}