🗃️ Committing everything that changed 🗃️
Some checks failed
release-tag / release-image (push) Has been cancelled

rootfs/tmp/etc/privoxy/config
rootfs/usr/local/etc/docker/init.d/03-tor-server.sh
rootfs/usr/local/etc/docker/init.d/98-privoxy.sh
This commit is contained in:
casjay 2025-01-16 13:13:16 -05:00
parent 240cdaa94b
commit f1e31207c7
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145
3 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,2 @@
forward-socks5t / 127.0.0.1:9050 . forward-socks5t / 127.0.0.1:9050 .
listen-address [::0]:8118
listen-address 0.0.0.0:8118 listen-address 0.0.0.0:8118

View File

@ -382,6 +382,7 @@ __post_execute() {
done done
echo "End current hidden services" echo "End current hidden services"
fi fi
(while :; do sleep 10 && __pgrep $EXEC_CMD_BIN >/dev/null || eval $EXEC_CMD_BIN $EXEC_CMD_ARGS >/dev/null; done &)
# show exit message # show exit message
__banner "$postMessageEnd: Status $retVal" __banner "$postMessageEnd: Status $retVal"
) 2>"/dev/stderr" | tee -p -a "/data/logs/init.txt" & ) 2>"/dev/stderr" | tee -p -a "/data/logs/init.txt" &

View File

@ -100,9 +100,9 @@ SERVICE_UID="0" # set the user id
SERVICE_GID="0" # set the group id SERVICE_GID="0" # set the group id
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# execute command variables - keep single quotes variables will be expanded later # execute command variables - keep single quotes variables will be expanded later
EXEC_CMD_BIN='privoxy' # command to execute EXEC_CMD_BIN='privoxy' # command to execute
EXEC_CMD_ARGS='$CONF_DIR/config' # command arguments EXEC_CMD_ARGS='--no-daemon $CONF_DIR/config' # command arguments
EXEC_PRE_SCRIPT='' # execute script before EXEC_PRE_SCRIPT='' # execute script before
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Is this service a web server # Is this service a web server
IS_WEB_SERVER="no" IS_WEB_SERVER="no"