Skip to content

Instantly share code, notes, and snippets.

@trevorsheridan
Created July 12, 2012 02:33
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 trevorsheridan/3095298 to your computer and use it in GitHub Desktop.
Save trevorsheridan/3095298 to your computer and use it in GitHub Desktop.
Apache virtual host file for mobile development on a LAN. Supports named based hosting and access through port 8000 (10.0.1.3:8000).
#
# 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 *:8000
<VirtualHost *:8000 *:80>
ServerAdmin trevor@brothe.rs
DocumentRoot "/web/public"
ServerName example.com
ErrorLog "/private/var/log/apache2/example.com-error_log"
CustomLog "/private/var/log/apache2/example.com-access_log" common
<Directory "/web/public">
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