Merge pull request #620 from haiwen/update_notification_reverse_proxy
Some checks failed
Deploy CI - 13.0 / deploy (push) Has been cancelled

update: reverse proxy configuration for notification server
This commit is contained in:
Daniel Pan 2025-11-04 16:51:47 +08:00 committed by GitHub
commit aaee52b7e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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";