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

Fixed port numbers in settings files.

parent f0e9f381
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ if [ -f /run/apache2/apache2.pid ]; then ...@@ -12,7 +12,7 @@ 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/drupal7}" APACHE_DOCROOT_DIR="${APACHE_DOCROOT_DIR:-/var/www/drupal7os}"
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
...@@ -35,7 +35,7 @@ fi ...@@ -35,7 +35,7 @@ fi
## Change permissions on /var/www/drupal7os ## Change permissions on /var/www/drupal7os
chown -R vagrant:www-data /var/www/drupal7os chown -R vagrant:www-data /var/www/drupal7os
chmod -R g+w /var/www/drupal7 chmod -R g+w /var/www/drupal7os
# Now that we're set up, run whatever command was passed to the entrypoint. # Now that we're set up, run whatever command was passed to the entrypoint.
exec "$@" exec "$@"
<?php <?php
// Server domain name. // Server domain name.
$UWhost = 'wcms-docker:4443'; $UWhost = 'wcms-docker:4445';
// Path to site root. // Path to site root.
$UWpref = 'fdsu1'; $UWpref = 'fdsu1';
// Name of site database. // Name of site database.
......
<?php <?php
// Server domain name. // Server domain name.
$UWhost = 'wcms-docker:4444'; $UWhost = 'wcms-docker:4446';
// Path to site root. // Path to site root.
$UWpref = 'fdsu1'; $UWpref = 'fdsu1';
// Name of site database. // Name of site database.
......
<?php <?php
// Server domain name. // Server domain name.
$UWhost = 'wcms-docker:4443'; $UWhost = 'wcms-docker:4444';
// Path to site root. // Path to site root.
$UWpref = 'fdsu1'; $UWpref = 'fdsu1';
// Name of site database. // Name of site database.
......
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