mirror of
https://github.com/wekan/wekan.git
synced 2025-12-23 19:00:12 +01:00
13 lines
349 B
Text
13 lines
349 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# get wekan/mongo settings
|
||
|
|
source $SNAP/bin/wekan-read-settings
|
||
|
|
|
||
|
|
if [ "$CADDY_ENABLED" = "true" ]; then
|
||
|
|
env LC_ALL=C caddy -conf=$SNAP_DATA/Caddyfile -host=localhost:${CADDY_PORT}
|
||
|
|
else
|
||
|
|
snapctl stop caddy-service 2>&1 || true
|
||
|
|
# sleep here, in case snapctl fails to stop service so we do not restart too often
|
||
|
|
sleep 60
|
||
|
|
fi
|