Created
January 27, 2015 14:24
-
-
Save iamajeesh/7dafef4c053b31ae0930 to your computer and use it in GitHub Desktop.
simple virtual host name example
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
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName site.com | |
ServerAlias www.site.com | |
DocumentRoot /var/www/html/site.com | |
<Directory /var/www//html/site.com> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment