Created
September 6, 2011 15:56
-
-
Save johnrobertwilson/1197958 to your computer and use it in GitHub Desktop.
Air Apache Vhost settings
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
## | |
# Host Database | |
# | |
# localhost is used to configure the loopback interface | |
# when the system is booting. Do not change this entry. | |
## | |
127.0.0.1 localhost | |
255.255.255.255 broadcasthost | |
::1 localhost | |
fe80::1%lo0 localhost | |
127.0.0.1 drupal7.local | |
------------------------------------------------- | |
<Directory "/Developer"> | |
Options Indexes FollowSymLinks MultiViews | |
</Directory> | |
<VirtualHost *:80> | |
ServerAdmin "[email protected]" | |
Options Indexes FollowSymLinks MultiViews | |
DocumentRoot "/Developer/D7/docroot" | |
ServerAlias drupal7.local | |
ErrorLog "logs/drupal7.local_log" | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment