diff --git a/build-scripts/web/docker-entrypoint.sh b/build-scripts/web/docker-entrypoint.sh index f56f24a4b137d6305f8b96626e82504ed4d4de5d..f671ec3d6e121a972da59b85c6803324282b3846 100644 --- a/build-scripts/web/docker-entrypoint.sh +++ b/build-scripts/web/docker-entrypoint.sh @@ -12,19 +12,19 @@ if [ -f /run/apache2/apache2.pid ]; then fi # Allow the Apache docroot to be overridden. -APACHE_DOCROOT_DIR="${APACHE_DOCROOT_DIR:-/var/www/html}" +APACHE_DOCROOT_DIR="${APACHE_DOCROOT_DIR:-/var/www/drupal}" if [ -n "$APACHE_DOCROOT_DIR" ]; then sed -i 's@^\s*DocumentRoot.*@'" DocumentRoot ${APACHE_DOCROOT_DIR}"'@' /etc/apache2/sites-available/000-default.conf fi # Allow the site name to be overriden. -APACHE_SITE_NAME="${APACHE_SITE_NAME:-docker.test}" +APACHE_SITE_NAME="${APACHE_SITE_NAME:-docker8}" if [ -n "$APACHE_SITE_NAME" ]; then sed -i 's@^\s*ServerName.*@'" ServerName ${APACHE_SITE_NAME}"'@' /etc/apache2/sites-available/000-default.conf fi # Allow for site aliases to be provided. -APACHE_SITE_ALIAS="${APACHE_SITE_ALIAS:-docker.localhost}" +APACHE_SITE_ALIAS="${APACHE_SITE_ALIAS:-docker8.localhost}" if [ -n "$APACHE_SITE_ALIAS" ]; then sed -i 's@^\s*ServerAlias.*@'" ServerAlias ${APACHE_SITE_ALIAS}"'@' /etc/apache2/sites-available/000-default.conf fi