mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-03-10 08:09:18 -04:00
20 lines
829 B
Plaintext
Executable File
20 lines
829 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
if [[ -f /config/nginx/geoip2.conf ]]; then
|
|
echo "/config/nginx/geoip2.conf exists.
|
|
Please migrate to https://github.com/linuxserver/docker-mods/tree/swag-maxmind"
|
|
fi
|
|
if [[ -f /config/nginx/ldap.conf ]]; then
|
|
echo "/config/nginx/ldap.conf exists.
|
|
Please apply any customizations to /config/nginx/ldap-server.conf
|
|
Ensure your configs are updated and remove /config/nginx/ldap.conf
|
|
If you do not use this config, simply remove it."
|
|
fi
|
|
if grep -qrle ' /etc/letsencrypt' /config/nginx; then
|
|
echo " The following nginx confs are using certificates from the obsolete location
|
|
/etc/letsencrypt and should be updated to point to /config/etc/letsencrypt
|
|
"
|
|
echo -n " " && grep -rle ' /etc/letsencrypt' /config/nginx
|
|
fi
|