From 230835512e4e3715b01416c4947a50b5444d880c Mon Sep 17 00:00:00 2001 From: Jizhou Deng Date: Tue, 4 Nov 2025 16:48:57 +0800 Subject: [PATCH] update: reverse proxy configuration for notification server --- manual/setup/use_other_reverse_proxy.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/manual/setup/use_other_reverse_proxy.md b/manual/setup/use_other_reverse_proxy.md index 3a1db966..52a86716 100644 --- a/manual/setup/use_other_reverse_proxy.md +++ b/manual/setup/use_other_reverse_proxy.md @@ -119,13 +119,8 @@ Modify `nginx.conf` and add reverse proxy for services ***seafile*** and ***sead ``` === "notification-server" ```conf - location /notification/ping { - proxy_pass http://127.0.0.1:8083/ping; - access_log /var/log/nginx/notification.access.log seafileformat; - error_log /var/log/nginx/notification.error.log; - } location /notification { - proxy_pass http://127.0.0.1:8083/; + proxy_pass http://127.0.0.1:8083; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";