config-servers-ssh_disabled.txtar
1# vi: set ft=conf
2
3# disable ssh listening
4env SOFT_SERVE_SSH_ENABLED=false
5env SOFT_SERVE_GIT_ENABLED=true
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 git + other servers to come up
13ensureserverrunning GIT_PORT
14ensureserverrunning HTTP_PORT
15ensureserverrunning STATS_PORT
16
17# ensure that the disabled server is not running
18ensureservernotrunning SSH_PORT