syncthing 使用 nginx 报错 Host check error

按照官方 nginx 示例是不靠谱的,syncthing 会用 Host 和监听 ip 比对,如果不同就会 Host check error。。。

去掉 Host 相关配置即可,反正 syncthing 也不需要它。

示例配置:

1
2
3
4
5
6
7
8
9
10
server {
listen 80;
server_name <your_domain_name>;

location / {
proxy_pass http://localhost:8384/;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
}
}

本作品采用 知识共享许可协议 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。