syncthing. Marking as tested. Adding Nginx config sample.
This commit is contained in:
parent
f3fefe2ccf
commit
029aa14299
|
@ -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] Sonarr (prototype state, working itself, but transmission-on-host integration didn't work due to path mismatch)
|
||||||
- [x] Speedtest (LibreSpeed)
|
- [x] Speedtest (LibreSpeed)
|
||||||
- [x] [Synapse](https://hub.docker.com/r/matrixdotorg/synapse) ([Matrix.org](https://matrix.org/) server)
|
- [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] [Tor Privoxy](https://hub.docker.com/r/dperson/torproxy)
|
||||||
- [x] Watchtower
|
- [x] Watchtower
|
||||||
- [ ] [Wireguard](https://hub.docker.com/r/cmulk/wireguard-docker) (prototype state, not working yet)
|
- [ ] [Wireguard](https://hub.docker.com/r/cmulk/wireguard-docker) (prototype state, not working yet)
|
||||||
|
|
19
syncthing/nginx/syncthing.conf
Normal file
19
syncthing/nginx/syncthing.conf
Normal 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/;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue