mirror of
https://github.com/gilbN/theme.park.git
synced 2024-11-04 10:12:31 +01:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
echo '------------------'
|
|
echo '| theme.park |'
|
|
echo '------------------'
|
|
|
|
# Display variables for troubleshooting
|
|
echo -e "Variables set:\\n\
|
|
PUID=${PUID}\\n\
|
|
PGID=${PGID}\\n\
|
|
TZ=${TZ}\\n\
|
|
TP_DOMAIN=${TP_DOMAIN}\\n"
|
|
|
|
if [[ -z ${TP_DOMAIN} ]]; then
|
|
echo 'No domain set, defaulting to $http_host'
|
|
TP_DOMAIN='$http_host'
|
|
fi
|
|
|
|
DEFAULT='/config/nginx/site-confs/default'
|
|
if ! grep -q "sub_filter 'https://theme-park.dev' \$scheme://${TP_DOMAIN};" ${DEFAULT}; then
|
|
sed -i "s/sub_filter 'https:\/\/theme-park.dev' \$scheme:\/\/TP_DOMAIN;/sub_filter 'https:\/\/theme-park.dev' \$scheme:\/\/${TP_DOMAIN}; /g" ${DEFAULT}
|
|
sed -i "s/sub_filter 'https:\/\/develop.theme-park.dev' \$scheme:\/\/TP_DOMAIN;/sub_filter 'https:\/\/develop.theme-park.dev' \$scheme:\/\/${TP_DOMAIN}; /g" ${DEFAULT}
|
|
fi
|
|
|
|
# make our folders and links
|
|
mkdir -p \
|
|
/config/www/{css,resources}
|
|
|
|
# copy theme files
|
|
cp -R /app/themepark/css /config/www
|
|
cp -R /app/themepark/resources /config/www
|
|
cp /app/themepark/index.html /config/www
|
|
cp /app/themepark/themes.py /config/www
|
|
cp /app/themepark/CNAME /config/www
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/config |