diff options
author | throwaway <developerthrowaway@protonmail.com> | 2024-06-19 20:05:37 -0700 |
---|---|---|
committer | throwaway <developerthrowaway@protonmail.com> | 2024-06-19 20:05:37 -0700 |
commit | a0b3189198afff6632eee761b0d3a601ce09b43c (patch) | |
tree | 7a45bc4692b9be077bda192641917d6921b3ced3 /docs/docker_tor.md | |
parent | 84b5c11d6b4272c3ca23a3c3cdc55f5036921c56 (diff) |
improve documentation
Diffstat (limited to 'docs/docker_tor.md')
-rw-r--r-- | docs/docker_tor.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/docker_tor.md b/docs/docker_tor.md index eae7431..21ae698 100644 --- a/docs/docker_tor.md +++ b/docs/docker_tor.md @@ -48,6 +48,9 @@ socks5:tor:9050:: create a file named `docker-compose.yaml` with the following content This docker compose file will run `luuul/tor` and `luuul/4get` and configure 4get to load `proxies/onion.txt` for outgoing requests. +If you mount your own torrc make sure you include `SocksPort 0.0.0.0:9050` +Read the warning in [starting tor](./docker_tor.md#Starting-tor)! + ``` # docker-compose.yaml version: "3.7" @@ -64,7 +67,8 @@ services: environment: - FOURGET_PROTO=http - FOURGET_SERVER_NAME=4get.ca - - FOURGET_PROXY_DDG="onion" # loads proxies/onion.txt + # loads proxies/onion.txt + - FOURGET_PROXY_DDG="onion" - FOURGET_PROXY_BRAVE="onion" - FOURGET_PROXY_FB="onion" - FOURGET_PROXY_GOOGLE="onion" |