This commit is contained in:
Alexandre
2022-12-20 13:45:19 +01:00
parent 521863bb33
commit 7d5a54f577
7 changed files with 57 additions and 33 deletions

View File

@@ -1,18 +1,6 @@
#!/usr/bin/bashio
# shellcheck shell=bash
rm /etc/nginx/servers/ingress.conf
exit 0
########
# TEST #
########
if [ -f /config/tandoortest.sh ]; then
echo "running test file"
chmod +x /config/tandoortest.sh
/./config/tandoortest.sh
fi
#################
# NGINX SETTING #
#################

View File

@@ -16,12 +16,13 @@ for element in ${ALLOWED_HOSTS//,/ }; do # Separate comma separated values
CSRF_TRUSTED_ORIGINS="http://$element,https://$element,$CSRF_TRUSTED_ORIGINS"
done
export CSRF_TRUSTED_ORIGINS
export ALLOWED_HOSTS="*"
#################
# Allow ingress #
#################
sed -i "s|href=\"{% base_path request \'base\' %}\"|href=\"{% base_path request \'base\' %}/\"|g" /opt/recipes/cookbook/templates/base.html
#sed -i "s|href=\"{% base_path request \'base\' %}\"|href=\"{% base_path request \'base\' %}/\"|g" /opt/recipes/cookbook/templates/base.html
###################
# Define database #
@@ -71,6 +72,13 @@ case $(bashio::config 'DB_TYPE') in
bashio::log.warning "This addon is using the Maria DB addon"
bashio::log.warning "Please ensure this is included in your backups"
bashio::log.warning "Uninstalling the MariaDB addon will remove any data"
bashio::log.info "Creating database if required"
mysql \
-u "${POSTGRES_USER}" -p"${POSTGRES_PASSWORD}" \
-h "${POSTGRES_HOST}" -P "${POSTGRES_PORT}" \
-e "CREATE DATABASE IF NOT EXISTS \`${POSTGRES_DB}\` ;"
;;
postgresql_external)