Skip to content

Instantly share code, notes, and snippets.

@robertlemke
Last active January 23, 2022 14:42
Show Gist options
  • Save robertlemke/4951820 to your computer and use it in GitHub Desktop.
Save robertlemke/4951820 to your computer and use it in GitHub Desktop.
Apache Virtualhosts file for creating dynamic virtual hosts
#
# 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>
@bwaidelich
Copy link

@robertlemke: Thank you, very helpful!

For those who are blind like me, make sure to replace the directory paths in "VirtualDocumentRoot" and in the <Directory "..."> part!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment