This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
No comments:
Post a Comment