Skip to content

Instantly share code, notes, and snippets.

@gayanvirajith
Last active August 29, 2015 14: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 gayanvirajith/acf1dc1f76787a710b59 to your computer and use it in GitHub Desktop.
Save gayanvirajith/acf1dc1f76787a710b59 to your computer and use it in GitHub Desktop.
Sample virtual host
<VirtualHost *:80>
DocumentRoot "/home/gayan/dev/html/"
ServerName html.local
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/home/gayan/dev/html/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment