mirror of
https://github.com/cmehay/docker-tor-hidden-service
synced 2024-11-18 09:25:54 +00:00
commit
7f16f43cdf
@ -11,8 +11,9 @@ def set_conf():
|
||||
with open("/etc/tor/torrc", "a") as conf:
|
||||
for link in links:
|
||||
path = "/var/lib/tor/hidden_service/{service}".format(service=link)
|
||||
env_port = links[link]['environment'].get('PORT')
|
||||
# Test if link has ports
|
||||
if len(links[link]['ports']) == 0:
|
||||
if len(links[link]['ports']) == 0 and not env_port:
|
||||
print("{link} has no port")
|
||||
continue
|
||||
conf.write('HiddenServiceDir {path}\n'.format(path=path))
|
||||
@ -26,6 +27,13 @@ def set_conf():
|
||||
conf.write('HiddenServicePort {service}\n'.format(
|
||||
service=service
|
||||
))
|
||||
if env_port:
|
||||
service = '80 {ip}:{port}'.format(
|
||||
port=env_port, ip=links[link]['ip']
|
||||
)
|
||||
conf.write('HiddenServicePort {service}\n'.format(
|
||||
service=service
|
||||
))
|
||||
# set relay if enabled in env (not so secure)
|
||||
if 'RELAY' in os.environ:
|
||||
conf.write("ORPort 9001\n")
|
||||
|
Loading…
Reference in New Issue
Block a user