-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BKDK-521 Adjustemts for os2web-subsites
- Loading branch information
Showing
8 changed files
with
74 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.env | ||
volumes/* | ||
!volumes/.keep | ||
logs/* | ||
!logs/.keep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<VirtualHost *:80> | ||
<Directory /opt/drupal> | ||
AllowOverride All | ||
Options FollowSymLinks | ||
</Directory> | ||
|
||
ServerAdmin [email protected] | ||
DocumentRoot /var/www/html | ||
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log | ||
CustomLog ${APACHE_LOG_DIR}/access.log combined | ||
|
||
SetEnvIf X-Forwarded-Proto https HTTPS=on | ||
|
||
php_admin_value open_basedir /opt/drupal:/usr/share/php | ||
php_value include_path .:/opt/drupal | ||
|
||
php_value log_errors 1 | ||
php_value html_errors 0 | ||
php_value display_errors 0 | ||
php_admin_value error_reporting 1023 | ||
php_value error_log /dev/stderr | ||
|
||
php_value session.save_path /opt/drupal/sessions | ||
php_admin_value upload_max_filesize 128M | ||
php_admin_value post_max_size 128M | ||
php_admin_value upload_tmp_dir /opt/drupal/tmp/default | ||
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,18 @@ | |
<Directory [basedir]> | ||
AllowOverride All | ||
Options FollowSymLinks | ||
# Uncommenting below will only allow a limited number of Bellcom IPs access to the site | ||
#Include /etc/apache2/limit-bellcom.conf | ||
# Below blocks access without auth if the domain ends with bellcom.dk | ||
#Include /etc/apache2/limit-subsite-access.conf | ||
</Directory> | ||
|
||
ServerAdmin [email protected] | ||
DocumentRoot [basedir]/public_html | ||
DocumentRoot /var/www/html | ||
ServerName [domain] | ||
|
||
CustomLog ${APACHE_LOG_DIR}/access.log combined | ||
ErrorLog ${APACHE_LOG_DIR}/error.log | ||
|
||
php_admin_value open_basedir [basedir]:/usr/share/php | ||
php_value include_path .:[basedir] | ||
php_value error_log ${APACHE_LOG_DIR}/error.log | ||
php_value error_log /dev/stderr | ||
php_value session.save_path [basedir]/sessions/[domain] | ||
php_admin_value upload_tmp_dir [basedir]/tmp/[domain] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters