Last active
August 29, 2015 14:05
-
-
Save steverobbins/f45c9b2b49df6553e9ba to your computer and use it in GitHub Desktop.
/Applications/MAMP/conf/apache/httpd.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
NameVirtualHost * | |
<VirtualHost *> | |
DocumentRoot "/Applications/MAMP/htdocs" | |
ServerName localhost | |
</VirtualHost> | |
<VirtualHost *> | |
ServerName 127.0.0.1.xip.io | |
UseCanonicalName Off | |
ServerAlias *.127.0.0.1.xip.io | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride None | |
</Directory> | |
<Directory /var/www/html/*> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
VirtualDocumentRoot /var/www/html/%1 | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment