Skip to content

Instantly share code, notes, and snippets.

@msroot
Created February 2, 2012 04:12
Show Gist options
  • Save msroot/1721410 to your computer and use it in GitHub Desktop.
Save msroot/1721410 to your computer and use it in GitHub Desktop.
NameVirtualHost
NameVirtualHost *:80
<VirtualHost *:80>
ServerName MYDOMAIN.COM
DocumentRoot /var/www/html/MYDOMAIN.COM
</VirtualHost>
<VirtualHost *:80>
ServerName MYDOMAIN2.COM
ServerAlias www.MYDOMAIN2.COM
DocumentRoot /var/www/html/MYDOMAIN2.COM
</VirtualHost>
<Directory "/var/www/html/MYDOMAIN.COM/">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex index.php index.html index.html.var
</Directory>
<Directory "/var/www/html/MYDOMAIN2.COM/">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex index.php index.html index.html.var
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment