Skip to content

Instantly share code, notes, and snippets.

@pauldijou
Created July 17, 2012 19:26
Show Gist options
  • Select an option

  • Save pauldijou/3131427 to your computer and use it in GitHub Desktop.

Select an option

Save pauldijou/3131427 to your computer and use it in GitHub Desktop.
conf file
# Activate vitual hosts
NameVirtualHost *:80
# IntellijIDEA Project
<VirtualHost *:80>
ServerName project.localhost
DocumentRoot /home/paul/project
<Directory /home/paul/project>
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
AllowOverride all
Order allow,deny
allow from all
</Directory>
</VirtualHost>
# Default Host
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment