mirror of
https://github.com/sky22333/hubproxy.git
synced 2026-06-12 12:13:51 +08:00
19 lines
378 B
Plaintext
19 lines
378 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="hubproxy"
|
|
description="Docker and GitHub acceleration proxy server"
|
|
command="/usr/bin/hubproxy"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
output_log="/var/log/hubproxy.log"
|
|
error_log="/var/log/hubproxy.log"
|
|
supervisor="supervise-daemon"
|
|
respawn_delay=5
|
|
respawn_max=0
|
|
|
|
export CONFIG_PATH="/etc/hubproxy/config.toml"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|