Skip to content

Instantly share code, notes, and snippets.

@mattleff
Created September 29, 2014 18:48
Show Gist options
  • Save mattleff/c6c36fd493463bd28bd0 to your computer and use it in GitHub Desktop.
Save mattleff/c6c36fd493463bd28bd0 to your computer and use it in GitHub Desktop.
#
# 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.
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin mattleff@gmail.com
DocumentRoot "/Users/matthew/HTML/SUFramework"
ServerName su.localhost
ServerAlias www.su.localhost
ErrorLog "/private/var/log/apache2/su.localhost-error_log"
CustomLog "/private/var/log/apache2/su.localhost-access_log" common
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/Users/matthew/HTML"
ServerName localhost
ServerAlias www.localhost
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment