Skip to content

Instantly share code, notes, and snippets.

@iamajeesh
Created January 27, 2015 14:24
Show Gist options
  • Save iamajeesh/7dafef4c053b31ae0930 to your computer and use it in GitHub Desktop.
Save iamajeesh/7dafef4c053b31ae0930 to your computer and use it in GitHub Desktop.
simple virtual host name example
<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