This repository has been archived on 2021-05-15. You can view files and clone it, but cannot push or open issues/pull-requests.
tor-reverseproxy/entrypoint.sh

14 lines
334 B
Bash
Raw Normal View History

2019-05-27 16:25:44 +02:00
#!/bin/sh
su-exec tor tor -f /etc/tor/torrc
tor_domain=$(cat /var/lib/tor/hidden-service/hostname)
main_domain=$(echo $MAIN_DOMAIN|sed 's/\./\\\./')
sed -e "s/@@TOR_DOMAIN@@/$tor_domain/g" \
2019-05-27 16:25:44 +02:00
-e "s/@@MAIN_DOMAIN@@/$main_domain/g" \
/etc/nginx/nginx.conf.tmpl > /etc/nginx/nginx.conf
2019-05-27 16:25:44 +02:00
echo $tor_domain
nginx -g 'daemon off;'