config-servers-http_disabled.txtar
1# vi: set ft=conf
2
3# disable http listening
4env SOFT_SERVE_SSH_ENABLED=true
5env SOFT_SERVE_GIT_ENABLED=true
6env SOFT_SERVE_HTTP_ENABLED=false
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 GIT_PORT
15ensureserverrunning STATS_PORT
16
17# ensure that the disabled server is not running
18ensureservernotrunning HTTP_PORT
19