Created
October 17, 2014 14:27
-
-
Save ghankerson/4cfda2991ec690effa26 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot /Users/ghankerson/Sites/arw | |
ServerName arw.geoff | |
<Directory /Users/ghankerson/Sites/arw> | |
AllowOverride All | |
Options FollowSymLinks | |
DirectoryIndex index.html index.php | |
Require all granted | |
</Directory> | |
ErrorLog "/private/var/log/apache2/arw.geoff-error_log" | |
CustomLog "/private/var/log/apache2/arw.geoff-access_log" common | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot /Users/ghankerson/Sites/dinnerparty | |
ServerName dp.geoff | |
<Directory /Users/ghankerson/Sites/dinnerparty> | |
AllowOverride All | |
Options FollowSymLinks | |
DirectoryIndex index.html index.php | |
Require all granted | |
</Directory> | |
ErrorLog "/private/var/log/apache2/dinnerparty.geoff-error_log" | |
CustomLog "/private/var/log/apache2/dinnerparty.geoff-access_log" common | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot /Users/ghankerson/Sites/mpr-archive | |
ServerName archive.geoff | |
<Directory /Users/ghankerson/Sites/mpr-archive> | |
AllowOverride All | |
Options FollowSymLinks | |
DirectoryIndex index.html index.php | |
Require all granted | |
</Directory> | |
ErrorLog "/private/var/log/apache2/archive.geoff-error_log" | |
CustomLog "/private/var/log/apache2/archive.geoff-access_log" common | |
</VirtualHost> | |
<VirtualHost *:80> | |
SetOutputFilter DEFLATE | |
ServerAdmin [email protected] | |
DocumentRoot /Users/ghankerson/Sites/apm-marketplace | |
ServerName mp.geoff | |
ServerAlias thisismarketplace.org www.thisismarketplace.org marketplace.org www.marketplace.org | |
<Directory /Users/ghankerson/Sites/apm-marketplace> | |
AllowOverride All | |
Options FollowSymLinks | |
DirectoryIndex index.html index.php | |
Require all granted | |
</Directory> | |
ErrorLog "/private/var/log/apache2/mp.geoff-error_log" | |
CustomLog "/private/var/log/apache2/mp.geoff-access_log" common | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot /Users/ghankerson/Sites/mpr-news/public_html | |
ServerName mprnews.dev | |
SetEnv APM_PHP_ENV "local" | |
<Directory /Users/ghankerson/Sites/mpr-news/public_html> | |
AllowOverride All | |
Options FollowSymLinks | |
DirectoryIndex index.html index.php | |
Require all granted | |
</Directory> | |
ErrorLog "/private/var/log/apache2/mprnews.dev-error_log" | |
CustomLog "/private/var/log/apache2/mprnews.dev-access_log" common | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment