summaryrefslogtreecommitdiffstats
path: root/snap-src/bin/wekan-read-settings
diff options
context:
space:
mode:
Diffstat (limited to 'snap-src/bin/wekan-read-settings')
-rwxr-xr-xsnap-src/bin/wekan-read-settings9
1 files changed, 9 insertions, 0 deletions
diff --git a/snap-src/bin/wekan-read-settings b/snap-src/bin/wekan-read-settings
index a924eaea..f216c2a8 100755
--- a/snap-src/bin/wekan-read-settings
+++ b/snap-src/bin/wekan-read-settings
@@ -18,3 +18,12 @@ do
export $key=$value
fi
done
+
+# if caddy is enabled, do update port settings based on caddy file
+if [ "$CADDY_ENABLED" = "true" ]; then
+ echo "caddy is enabled, adjusting ports"
+ export CADDY_PORT=${PORT}
+ echo -e "CADDY_PORT=$CADDY_PORT"
+ export PORT=${CADDY_BIND_PORT}
+ echo -e "PORT=$PORT"
+fi