mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
104 lines
3.0 KiB
Bash
Executable File
104 lines
3.0 KiB
Bash
Executable File
#!/usr/bin/env bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
############
|
|
# TIMEZONE #
|
|
############
|
|
|
|
if bashio::config.has_value 'TZ'; then
|
|
TIMEZONE=$(bashio::config 'TZ')
|
|
bashio::log.info "Setting timezone to $TIMEZONE"
|
|
if [ -f /usr/share/zoneinfo/"$TIMEZONE" ]; then
|
|
ln -snf /usr/share/zoneinfo/"$TIMEZONE" /etc/localtime
|
|
echo "$TIMEZONE" >/etc/timezone
|
|
else
|
|
bashio::log.fatal "$TIMEZONE not found, are you sure it is a valid timezone?"
|
|
fi
|
|
fi
|
|
|
|
###################
|
|
# SSL CONFIG v1.0 #
|
|
###################
|
|
|
|
bashio::config.require.ssl
|
|
if bashio::config.true 'ssl'; then
|
|
bashio::log.info "ssl enabled. If webui don't work, disable ssl or check your certificate paths"
|
|
#set variables
|
|
CERTFILE="-t /ssl/$(bashio::config 'certfile')"
|
|
KEYFILE="-k /ssl/$(bashio::config 'keyfile')"
|
|
else
|
|
CERTFILE=""
|
|
KEYFILE=""
|
|
fi
|
|
|
|
#################
|
|
# NGINX SETTING #
|
|
#################
|
|
|
|
#declare port
|
|
#declare certfile
|
|
declare ingress_interface
|
|
declare ingress_port
|
|
#declare keyfile
|
|
|
|
FB_BASEURL=$(bashio::addon.ingress_entry)
|
|
export FB_BASEURL
|
|
|
|
declare ADDON_PROTOCOL=http
|
|
# Generate Ingress configuration
|
|
if bashio::config.true 'ssl'; then
|
|
ADDON_PROTOCOL=https
|
|
fi
|
|
|
|
#port=$(bashio::addon.port 80)
|
|
ingress_port=$(bashio::addon.ingress_port)
|
|
ingress_interface=$(bashio::addon.ip_address)
|
|
sed -i "s|%%protocol%%|${ADDON_PROTOCOL}|g" /etc/nginx/servers/ingress.conf
|
|
sed -i "s|%%port%%|${ingress_port}|g" /etc/nginx/servers/ingress.conf
|
|
sed -i "s|%%interface%%|${ingress_interface}|g" /etc/nginx/servers/ingress.conf
|
|
sed -i "s|%%subpath%%|${FB_BASEURL}/|g" /etc/nginx/servers/ingress.conf
|
|
mkdir -p /var/log/nginx && touch /var/log/nginx/error.log
|
|
|
|
######################
|
|
# LAUNCH FILEBROWSER #
|
|
######################
|
|
|
|
NOAUTH=""
|
|
|
|
if bashio::config.true 'NoAuth'; then
|
|
if ! bashio::fs.file_exists "/data/noauth"; then
|
|
rm /data/auth &>/dev/null || true
|
|
rm /config/addons_config/filebrowser/filebrowser.dB &>/dev/null || true
|
|
touch /data/noauth
|
|
NOAUTH="--noauth"
|
|
bashio::log.warning "Auth method change, database reset"
|
|
fi
|
|
bashio::log.info "NoAuth option selected"
|
|
else
|
|
if ! bashio::fs.file_exists "/data/auth"; then
|
|
rm /data/noauth &>/dev/null || true
|
|
rm /config/addons_config/filebrowser/filebrowser.dB &>/dev/null || true
|
|
touch /data/auth
|
|
bashio::log.warning "Auth method change, database reset"
|
|
fi
|
|
bashio::log.info "Default username/password : admin/admin"
|
|
fi
|
|
|
|
if bashio::config.has_value 'base_folder'; then
|
|
BASE_FOLDER=$(bashio::config 'base_folder')
|
|
else
|
|
BASE_FOLDER=/
|
|
fi
|
|
|
|
bashio::log.info "Starting..."
|
|
|
|
# Remove default config
|
|
rm /.filebrowser.json
|
|
|
|
# shellcheck disable=SC2086
|
|
/./filebrowser --disable-preview-resize --disable-type-detection-by-header --cache-dir=".\cache" $CERTFILE $KEYFILE --root="$BASE_FOLDER" --address=0.0.0.0 --port=8080 --database=/config/addons_config/filebrowser/filebrowser.dB "$NOAUTH" &
|
|
bashio::net.wait_for 8080 localhost 900 || true
|
|
bashio::log.info "Started !"
|
|
exec nginx
|