Skip to content

Instantly share code, notes, and snippets.

@bobdobs
Forked from gistwebdev/template
Last active December 23, 2015 01:59
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 bobdobs/6564216 to your computer and use it in GitHub Desktop.
Save bobdobs/6564216 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin template.email
ServerName template.url
# ServerAlias template.url
DocumentRoot template.webroot/docs
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory template.webroot/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from All
</Directory>
php_value include_path ".:template.webroot/includes"
ErrorLog template.webroot/logs/error_log.log
CustomLog template.webroot/logs/access_log.log common
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment