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

28 lines
901 B
Nginx Configuration File
Raw Normal View History

2019-08-05 01:29:15 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2023-06-22 09:09:24 +02:00
alias __INSTALL_DIR__/;
2019-08-05 01:29:15 +02:00
2021-04-01 20:57:23 +02:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2021-04-02 20:26:16 +02:00
client_max_body_size 100M;
2021-04-01 20:57:23 +02:00
2019-08-05 01:29:15 +02:00
proxy_set_header Host $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;
2023-06-22 09:23:53 +02:00
proxy_pass http://127.0.0.1:__PORT_ROCKET__;
2019-08-05 01:29:15 +02:00
}
2023-06-22 09:09:24 +02:00
location __INSTALL_DIR__/notifications/hub {
2019-08-05 01:29:15 +02:00
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
2023-06-22 09:23:53 +02:00
proxy_pass http://127.0.0.1:__PORT_WEBSOCKET__;
2019-08-05 01:29:15 +02:00
}
2023-06-22 09:09:24 +02:00
location __INSTALL_DIR__/notifications/hub/negotiate {
2023-06-22 09:23:53 +02:00
proxy_pass http://127.0.0.1:__PORT_ROCKET__;
2019-08-05 01:29:15 +02:00
}