-
-
Save fr34k8/a4ac3083157371ce352e to your computer and use it in GitHub Desktop.
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
# | |
# Virtual Hosts | |
# | |
# If you want to maintain multiple domains/hostnames on your | |
# machine you can setup VirtualHost containers for them. Most configurations | |
# use only name-based virtual hosts so the server doesn't need to worry about | |
# IP addresses. This is indicated by the asterisks in the directives below. | |
# | |
# Please see the documentation at | |
# <URL:http:/httpd.apache.org/docs/2.2/vhosts/> | |
# for further details before you try to setup virtual hosts. | |
# | |
# You may use the command line option '-S' to verify your virtual host | |
# configuration. | |
NameVirtualHost *:80 | |
<Directory "/Users/robert/Sites"> | |
Options ExecCGI Indexes MultiViews FollowSymLinks Includes | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
DirectoryIndex index.php | |
UseCanonicalName off | |
</Directory> | |
# Flow installations mapped to *.flow.dev | |
<VirtualHost *:80> | |
ServerName local.dev | |
ServerAlias *.dev | |
VirtualDocumentRoot /Users/robert/Sites/%-2+/Web | |
SetEnv FLOW_CONTEXT Development | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName local.prod | |
ServerAlias *.prod | |
VirtualDocumentRoot /Users/robert/Sites/%-2+/Web | |
SetEnv FLOW_CONTEXT Production | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment