deprecated

This commit is contained in:
Alexandre
2024-03-06 14:38:35 +01:00
committed by GitHub
parent a0979c96e3
commit 3e04c9ca07
23 changed files with 4 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
if bashio::config.true 'ssl'; then
# Validate ssl
bashio::config.require.ssl
# Adapt nginx template
certfile=$(bashio::config 'certfile')
keyfile=$(bashio::config 'keyfile')
sed -i "s#%%certfile%%#${certfile}#g" /etc/nginx/servers/direct.conf
sed -i "s#%%keyfile%%#${keyfile}#g" /etc/nginx/servers/direct.conf
# Configure URL
if bashio::config.has_value "PAPERLESS_URL"; then
bashio::log.warning "Ssl enabled, your site will be available at $(bashio::config "PAPERLESS_URL"). Don't forget to enable the https alternative port in the addon options."
else
bashio::log.fatal "PAPERLESS_URL not set, you won't be able to access your site (CSRF error)"
fi
else
sed -i "s|default_server ssl|default_server|g" /etc/nginx/servers/direct.conf
sed -i "/ssl/d" /etc/nginx/servers/direct.conf
fi