Skip to content

Instantly share code, notes, and snippets.

@al-ivanov
Forked from agragregra/httpd-vhost.conf
Created May 14, 2017 20:29
Show Gist options
  • Select an option

  • Save al-ivanov/adcfba8c529d7c5fab2693673938856c to your computer and use it in GitHub Desktop.

Select an option

Save al-ivanov/adcfba8c529d7c5fab2693673938856c 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