Skip to content

Instantly share code, notes, and snippets.

@alsibir
Last active February 23, 2017 11:27
Show Gist options
  • Save alsibir/d4c6a4afe2a6fe6cb62753241330c332 to your computer and use it in GitHub Desktop.
Save alsibir/d4c6a4afe2a6fe6cb62753241330c332 to your computer and use it in GitHub Desktop.
XAMPP httpd-vhost.conf
<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