Last active
December 20, 2015 12:18
-
-
Save geocine/6129456 to your computer and use it in GitHub Desktop.
This file contains 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 * | |
<VirtualHost *> | |
DocumentRoot "D:/xampp/htdocs" | |
ServerName localhost | |
<Directory "D:/xampp/htdocs"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost> | |
<VirtualHost *> | |
DocumentRoot "D:/xampp/htdocs/geochat" | |
ServerName geochat.com | |
<Directory "D:/xamp/htdocs/geochat"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost> | |
<VirtualHost *> | |
DocumentRoot "D:/xampp/htdocs/mobile_01/source/public" | |
ServerName catsrpt | |
<Directory "D:/xampp/htdocs/mobile_01/source/public"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment