Last active
February 23, 2017 11:27
-
-
Save alsibir/d4c6a4afe2a6fe6cb62753241330c332 to your computer and use it in GitHub Desktop.
XAMPP httpd-vhost.conf
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> | |
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/" | |
ServerName localhost | |
<Directory "/Applications/XAMPP/xamppfiles/htdocs/"> | |
Options Indexes FollowSymLinks Includes execCGI | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> | |
<VirtualHost *:80> | |
DocumentRoot "/Applications/XAMPP/xamppfiles/docs/modx.loc/" | |
ServerName modx.loc | |
<Directory "/Applications/XAMPP/xamppfiles/docs/modx.loc/"> | |
Options Indexes FollowSymLinks Includes execCGI | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment