mirror of
https://github.com/hassio-addons/addon-home-panel.git
synced 2025-05-05 03:11:24 +00:00
* 🔨 First attempt with gitlab build * 🔨 Move build * ✏️ Fix typo Co-Authored-By: Franck Nijhof <frenck@addons.community> * 🔨 Update link * 🔨 Update build * 🔨 Update download * 🔨 Update url * ⬆️ Updates
25 lines
885 B
Bash
25 lines
885 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Community Hass.io Add-ons: Home Panel
|
|
# Configures NGINX for use with thelounge
|
|
# ==============================================================================
|
|
declare port
|
|
declare certfile
|
|
declare keyfile
|
|
|
|
port=$(bashio::addon.port 80)
|
|
if bashio::var.has_value "${port}"; then
|
|
bashio::config.require.ssl
|
|
|
|
if bashio::config.true 'ssl'; then
|
|
certfile=$(bashio::config 'certfile')
|
|
keyfile=$(bashio::config 'keyfile')
|
|
|
|
mv /etc/nginx/servers/direct-ssl.disabled /etc/nginx/servers/direct.conf
|
|
sed -i "s#%%certfile%%#${certfile}#g" /etc/nginx/servers/direct.conf
|
|
sed -i "s#%%keyfile%%#${keyfile}#g" /etc/nginx/servers/direct.conf
|
|
|
|
else
|
|
mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf
|
|
fi
|
|
fi
|