Created
April 5, 2012 00:44
-
-
Save jrob00/2306944 to your computer and use it in GitHub Desktop.
local clover virtualhosts file
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
NameVirtualHost *:80 | |
NameVirtualHost *:443 | |
#DocumentRoot "/var/www/html" | |
<Directory /> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
</Directory> | |
#cron.local.cloverdonations.com | |
<Virtualhost *:80> | |
ServerName cron.local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/Donation-Center/Cron/" | |
<Directory /> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> | |
# admin.dev.cloverdonations.com; dev admin | |
<Virtualhost *:80> | |
ServerName admin.local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/The-Bakery/Deploy" | |
RewriteEngine On | |
RewriteOptions Inherit | |
<Directory "/Users/jason/Sites/Clover/Donations/The-Bakery/Deploy"> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> | |
# customer.dev.cloverdonations.com; dev deploy | |
<Virtualhost *:80> | |
ServerName customer.local.cloverdonations.com | |
ServerAlias *.local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/Donation-Center/Deploy" | |
RewriteEngine On | |
RewriteOptions Inherit | |
<Directory "/Users/jason/Sites/Clover/Donations/Donation-Center/Deploy"> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> | |
# dev.cloverdonations.com; dev www | |
<Virtualhost *:80> | |
ServerName local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/CloverDonations.com/Deploy" | |
RewriteEngine On | |
RewriteOptions Inherit | |
<Directory "/Users/jason/Sites/Clover/Donations/CloverDonations.com/Deploy"> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> | |
<IfModule mod_ssl.c> | |
<VirtualHost *:443> | |
ServerName local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/CloverDonations.com/Deploy" | |
RewriteEngine On | |
RewriteOptions Inherit | |
<Directory "/Users/jason/Sites/Clover/Donations/CloverDonations.com/Deploy"> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
SSLEngine on | |
SSLVerifyClient none | |
SSLCertificateFile /Applications/MAMP/conf/apache/*.cloverdonations.com.crt | |
SSLCertificateKeyFile /Applications/MAMP/conf/apache/*.cloverdonations.com.public.key | |
SSLCertificateChainFile /Applications/MAMP/conf/apache/intermediate.crt | |
</VirtualHost> | |
</IfModule> | |
# local.clo.do; dev clo.do | |
<Virtualhost *:80> | |
ServerName local.clo.do | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/Donation-Center/Deploy" | |
RewriteEngine On | |
RewriteOptions Inherit | |
<Directory "/Users/jason/Sites/Clover/Donations/Donation-Center/Deploy"> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> | |
#cache.local.cloverdonations.com | |
<Virtualhost *:80> | |
ServerName cache.local.cloverdonations.com | |
MIMEMagicFile /dev/null | |
DocumentRoot "/Users/jason/Sites/Clover/Donations/Donation-Assets/Shared Server Files/shared/html/cache" | |
<Directory /> | |
Options -Indexes +FollowSymLinks | |
Order allow,deny | |
Allow from all | |
AllowOverride None | |
</Directory> | |
</Virtualhost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment