Skip to content

Instantly share code, notes, and snippets.

@gvsrepins
Created November 14, 2012 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gvsrepins/4069391 to your computer and use it in GitHub Desktop.
Save gvsrepins/4069391 to your computer and use it in GitHub Desktop.
Conf:VHost Configuration File
<VirtualHost *:80>
ServerAdmin user@server
DocumentRoot /var/www/project
ServerName project.local
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory /var/www/project>
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin user@server
DocumentRoot /var/www/project
ServerName project.local
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory /var/www/project>
Options Indexes MultiViews FollowSymLinks
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