| 1 |
# Default Aegir apache configuration file
|
| 2 |
|
| 3 |
# Edit to your taste. Must be installed in
|
| 4 |
# /var/aegir/config/vhost.d/aegir.example.com
|
| 5 |
|
| 6 |
# Note that this file may eventually be automatically be managed by
|
| 7 |
# aegir.
|
| 8 |
|
| 9 |
NameVirtualHost *:80
|
| 10 |
|
| 11 |
# This only covers the base platforms, extra platforms should deploy
|
| 12 |
# their own configuration
|
| 13 |
#
|
| 14 |
# This will be replaced by aegir when the base platform will be verified
|
| 15 |
<Directory /var/aegir/hostmaster-0.x>
|
| 16 |
Options Indexes FollowSymLinks MultiViews
|
| 17 |
AllowOverride All
|
| 18 |
Order allow,deny
|
| 19 |
allow from all
|
| 20 |
</Directory>
|
| 21 |
|
| 22 |
<VirtualHost *:80>
|
| 23 |
RewriteEngine On
|
| 24 |
ServerAdmin webmaster@localhost
|
| 25 |
ServerName aegir.example.com
|
| 26 |
|
| 27 |
DocumentRoot /var/aegir/hostmaster-0.x
|
| 28 |
</VirtualHost>
|