1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

fix socket nginx path

This commit is contained in:
Kay0u 2024-08-03 00:28:51 +02:00
parent 5b58e572d1
commit 27ce862254
No known key found for this signature in database
GPG key ID: 80B10EDBEEC65A88

View file

@ -1,8 +1,8 @@
location ^~ __PATH__/push/ {
proxy_pass http://unix:__INSTALL_DIR__/notify-push.sock;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://unix:__INSTALL_DIR__/notify-push.sock:/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}