You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use links between torproxy and another service it will expose env variables of linked service into torproxy container. It is not problem unless compose project name starts with "tor", because then there will be env variables TOR_* and this variables will be copied into /etc/tor/torrc.
Then tor will fail on broken config:
21. 5. 2017 1:35:36May 21 01:35:36.957 [notice] Tor 0.2.9.10 (git-e28303bcf90b842d) running on Linux with Libevent 2.0.21-stable, OpenSSL 1.1.0e and Zlib 1.2.8.
21. 5. 2017 1:35:36May 21 01:35:36.960 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://www.torproject.org/download/download#warning
21. 5. 2017 1:35:36May 21 01:35:36.961 [notice] Read configuration file "/etc/tor/torrc".
21. 5. 2017 1:35:36May 21 01:35:36.974 [warn] Failed to parse/validate config: Unknown option '_DOWNLOADER_DB_1_ENV_GOSU_VERSION'. Failing.
21. 5. 2017 1:35:36May 21 01:35:36.975 [err] Reading config failed--see warnings above.
The text was updated successfully, but these errors were encountered:
Okay, tor uses camelCase for it's configuration option names. I've modified the entry point script to skip any named values starting with tor_ that contain a second (or more) underscore character(s). Hopefully this will fix the issue you're seeing.
22. 5. 2017 v 20:26, David Personette ***@***.***>:
Okay, tor uses camelCase for it's configuration option names. I've modified the entry point script to skip any named values starting with tor_ that contain a second (or more) underscore character(s). Hopefully this will fix the issue you're seeing.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#15 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAlfWJbnptB8_3IXFrxoBLvteGos2Lwgks5r8dNfgaJpZM4NhcsM>.
If I use links between torproxy and another service it will expose env variables of linked service into torproxy container. It is not problem unless compose project name starts with "tor", because then there will be env variables
TOR_*
and this variables will be copied into/etc/tor/torrc
.Then tor will fail on broken config:
The text was updated successfully, but these errors were encountered: