Skip to content

Instantly share code, notes, and snippets.

@gnu-user
Created June 4, 2013 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnu-user/5703269 to your computer and use it in GitHub Desktop.
Save gnu-user/5703269 to your computer and use it in GitHub Desktop.
Apache Virtual Hosts Configuration
#
# 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 example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
DocumentRoot "/srv/http"
ServerAdmin root@localhost
ErrorLog "/var/log/httpd/127.0.0.1-error_log"
CustomLog "/var/log/httpd/127.0.0.1-access_log" common
<Directory /srv/http/>
DirectoryIndex index.htm index.html index.php
AddHandler php5-script php
Options Indexes FollowSymLinks MultiViews +Includes
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin test@free-room.dom
DocumentRoot "/home/jon/Source/github/free-room-website"
ServerName free-room.dom
ServerAlias free-room.dom
ErrorLog "/var/log/httpd/free-room.dom-error_log"
CustomLog "/var/log/httpd/free-room.dom-access_log" common
<Directory "/home/jon/Source/github/free-room-website">
DirectoryIndex index.htm index.html index.php
AddHandler php5-script php
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment