From 36703b142a183be3d95318e5862a8e924acd1cab Mon Sep 17 00:00:00 2001 From: skywalker Date: Tue, 21 Feb 2023 17:19:19 +0800 Subject: [PATCH] fix notification-server nginx conf --- seafile-10.0_ubuntu | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/seafile-10.0_ubuntu b/seafile-10.0_ubuntu index 6066ecb..fa98b3e 100644 --- a/seafile-10.0_ubuntu +++ b/seafile-10.0_ubuntu @@ -203,6 +203,11 @@ server { access_log /var/log/nginx/seafhttp.access.log seafileformat; error_log /var/log/nginx/seafhttp.error.log; } + 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_http_version 1.1;