Skip to content
Snippets Groups Projects
Commit e1d27b33 authored by Chris Shantz's avatar Chris Shantz
Browse files

Update docker-entrypoint.sh changing default paths.

parent d92dc6cd
No related branches found
No related tags found
No related merge requests found
...@@ -12,19 +12,19 @@ if [ -f /run/apache2/apache2.pid ]; then ...@@ -12,19 +12,19 @@ if [ -f /run/apache2/apache2.pid ]; then
fi fi
# Allow the Apache docroot to be overridden. # 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 if [ -n "$APACHE_DOCROOT_DIR" ]; then
sed -i 's@^\s*DocumentRoot.*@'" DocumentRoot ${APACHE_DOCROOT_DIR}"'@' /etc/apache2/sites-available/000-default.conf sed -i 's@^\s*DocumentRoot.*@'" DocumentRoot ${APACHE_DOCROOT_DIR}"'@' /etc/apache2/sites-available/000-default.conf
fi fi
# Allow the site name to be overriden. # 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 if [ -n "$APACHE_SITE_NAME" ]; then
sed -i 's@^\s*ServerName.*@'" ServerName ${APACHE_SITE_NAME}"'@' /etc/apache2/sites-available/000-default.conf sed -i 's@^\s*ServerName.*@'" ServerName ${APACHE_SITE_NAME}"'@' /etc/apache2/sites-available/000-default.conf
fi fi
# Allow for site aliases to be provided. # 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 if [ -n "$APACHE_SITE_ALIAS" ]; then
sed -i 's@^\s*ServerAlias.*@'" ServerAlias ${APACHE_SITE_ALIAS}"'@' /etc/apache2/sites-available/000-default.conf sed -i 's@^\s*ServerAlias.*@'" ServerAlias ${APACHE_SITE_ALIAS}"'@' /etc/apache2/sites-available/000-default.conf
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment