Make it obvious that media domain has to be different from main

This commit is contained in:
Rémai Gábor 2024-11-19 10:31:43 +01:00 committed by GitHub
parent ece6a6947f
commit c967afb946
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,7 @@ fi
# Ask for input only if variables are not already set
[ -z "$MAIN_DOMAIN" ] && read -p "Enter Main FQDN: " MAIN_DOMAIN
[ -z "$MEDIA_DOMAIN" ] && read -p "Enter Media FQDN: " MEDIA_DOMAIN
[ -z "$MEDIA_DOMAIN" ] && read -p "Enter Media FQDN (MUST be different from Main Domain): " MEDIA_DOMAIN
[ -z "$EMAIL" ] && read -p "Enter Email: " EMAIL
[ -z "$LISTEN_IP" ] && read -p "Enter Listen IP: " LISTEN_IP
[ -z "$EXTERNAL_IP" ] && read -p "Enter Public IP: " EXTERNAL_IP