mirror of
https://github.com/Retropex/Ordisrespector-pool-ui.git
synced 2025-05-12 19:20:43 +02:00
13 lines
368 B
Bash
13 lines
368 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -e "/etc/Caddyfile" ]; then
|
|
sed -i "s#%%DOMAIN%%#${DOMAIN:-localhost}#g" /etc/Caddyfile.tpl
|
|
sed -i "s#%%LOGLEVEL%%#${LOGLEVEL:-INFO}#g" /etc/Caddyfile.tpl
|
|
sed -i "s#%%LOGFORMAT%%#${LOGFORMAT:-json}#g" /etc/Caddyfile.tpl
|
|
mv /etc/Caddyfile.tpl /etc/Caddyfile
|
|
else
|
|
rm -f /etc/Caddyfile.tpl
|
|
fi
|
|
|
|
exec caddy run --config /etc/Caddyfile
|