diff options
Diffstat (limited to 'core/entrypoint.sh')
-rw-r--r-- | core/entrypoint.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/entrypoint.sh b/core/entrypoint.sh index ba37c18..ae762e8 100644 --- a/core/entrypoint.sh +++ b/core/entrypoint.sh @@ -77,4 +77,12 @@ settings_version = 3 EOF fi +if [ "$ROUTE_TOR" = 1 ] || [ "$ROUTE_TOR" = 2 ]; then + cat > /etc/torrc <<- EOF +Log notice stdout +SocksPort 0.0.0.0:9050 +EOF + tor -f /etc/torrc --runasdaemon 1 +fi + exec /usr/bin/python3 /srv/app/server.py |