syncthing. Marking as tested. Adding Nginx config sample.

This commit is contained in:
Alexey Skobkin 2022-02-16 23:22:49 +03:00
parent f3fefe2ccf
commit 029aa14299
2 changed files with 20 additions and 1 deletions

View File

@ -48,7 +48,7 @@ Not every stack is tested to fully work.
- [x] Sonarr (prototype state, working itself, but transmission-on-host integration didn't work due to path mismatch)
- [x] Speedtest (LibreSpeed)
- [x] [Synapse](https://hub.docker.com/r/matrixdotorg/synapse) ([Matrix.org](https://matrix.org/) server)
- [ ] [Syncthing](https://hub.docker.com/r/linuxserver/syncthing)
- [x] [Syncthing](https://hub.docker.com/r/linuxserver/syncthing)
- [x] [Tor Privoxy](https://hub.docker.com/r/dperson/torproxy)
- [x] Watchtower
- [ ] [Wireguard](https://hub.docker.com/r/cmulk/wireguard-docker) (prototype state, not working yet)

View File

@ -0,0 +1,19 @@
server {
listen 80;
server_name syncthing.domain.tld;
#charset utf-8;
location / {
# Recommended: https://docs.syncthing.net/users/reverseproxy.html#nginx
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
proxy_pass http://127.0.0.1:8384/;
}
}