config-servers-git_disabled.txtar
 1# vi: set ft=conf
 2
 3# disable git listening
 4env SOFT_SERVE_SSH_ENABLED=true
 5env SOFT_SERVE_GIT_ENABLED=false
 6env SOFT_SERVE_HTTP_ENABLED=true
 7env SOFT_SERVE_STATS_ENABLED=true
 8
 9# start soft serve
10exec soft serve --sync-hooks &
11
12# wait for the ssh + other servers to come up
13ensureserverrunning SSH_PORT
14ensureserverrunning HTTP_PORT
15ensureserverrunning STATS_PORT
16
17# ensure that the disabled server is not running
18ensureservernotrunning GIT_PORT