Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apache2.2/conf/extra/includes/host.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
DocumentRoot ${APACHE_DOCUMENTROOT}
# Make sure index.php is loaded by default
# E.g. WP does not ship with a default .htacess and a rule for DirectoryIndex.
# It's best to set it here as that's the standard for any PHP app anyway.
# Priority order: folder level index.php, folder level index.html
DirectoryIndex index.php index.html

# Route logs to STDOUT (/proc/self/fd/1) and STDERR (/proc/self/fd/2)
ErrorLog /proc/self/fd/2
Expand Down
7 changes: 6 additions & 1 deletion apache2.4/conf/extra/includes/host.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
DocumentRoot ${APACHE_DOCUMENTROOT}
# Make sure index.php is loaded by default
# E.g. WP does not ship with a default .htacess and a rule for DirectoryIndex.
# It's best to set it here as that's the standard for any PHP app anyway.
# Priority order: folder level index.php, folder level index.html
DirectoryIndex index.php index.html

# Route logs to STDOUT (/proc/self/fd/1) and STDERR (/proc/self/fd/2)
ErrorLog /proc/self/fd/2
CustomLog /proc/self/fd/1 combined

<Directory "${APACHE_DOCUMENTROOT}">
#Options FollowSymLinks
Options FollowSymLinks
AllowOverride All

# Enable Basic HTTP Authentication if requested
Expand Down