Skip to content

Instantly share code, notes, and snippets.

@jworksuk
Created March 13, 2013 23:04
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 jworksuk/5157273 to your computer and use it in GitHub Desktop.
Save jworksuk/5157273 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName __domain__
ServerAlias __domainalias__
DocumentRoot /Users/jjames/Sites/__folder__/
<Directory /Users/jjames/Sites/__folder__/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
SetEnv environment local
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment