You are here

apache2.conf.txt in Hostmaster (Aegir) 5.x

# Default Aegir apache configuration file

# Edit to your taste. Must be installed in
# /var/aegir/config/vhost.d/aegir.example.com

# Note that this file may eventually be automatically be managed by
# aegir.

NameVirtualHost *:80

# This only covers the base platforms, extra platforms should deploy
# their own configuration
#
# This will be replaced by aegir when the base platform will be verified
<Directory /var/aegir/drupal-5.x>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

<VirtualHost *:80>
    RewriteEngine On
    ServerAdmin webmaster@localhost
    ServerName aegir.example.com

    DocumentRoot /var/aegir/drupal-5.x
</VirtualHost>

File

apache2.conf.txt
View source
  1. # Default Aegir apache configuration file
  2. # Edit to your taste. Must be installed in
  3. # /var/aegir/config/vhost.d/aegir.example.com
  4. # Note that this file may eventually be automatically be managed by
  5. # aegir.
  6. NameVirtualHost *:80
  7. # This only covers the base platforms, extra platforms should deploy
  8. # their own configuration
  9. #
  10. # This will be replaced by aegir when the base platform will be verified
  11. Options Indexes FollowSymLinks MultiViews
  12. AllowOverride All
  13. Order allow,deny
  14. allow from all
  15. RewriteEngine On
  16. ServerAdmin webmaster@localhost
  17. ServerName aegir.example.com
  18. DocumentRoot /var/aegir/drupal-5.x