Parent Directory
|
Revision Log
|
Revision Graph
Add vhost writing ability.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | ?> |
| 4 | |
| 5 | # Drupal <?php print "$version\n"; ?> |
| 6 | <VirtualHost *> |
| 7 | ServerName drupal-<?php print $version; ?>.<?php print "$base\n"; ?> |
| 8 | <?php if ($aliases) { ?> ServerAlias <?php print "$aliases\n" ?><?php } ?> |
| 9 | ServerAdmin <?php print "$admin\n" ?> |
| 10 | |
| 11 | DocumentRoot <?php print "$document_root\n" ?> |
| 12 | <Directory <?php print $document_root; ?>> |
| 13 | AllowOverride FileInfo AuthConfig Limit Indexes Options |
| 14 | Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec |
| 15 | Order allow,deny |
| 16 | Allow from all |
| 17 | </Directory> |
| 18 | </VirtualHost> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |