Created
September 17, 2014 12:27
-
-
Save hitautodestruct/c5caf868af6385b45600 to your computer and use it in GitHub Desktop.
Apache virtual hosts config for a local site
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 dev.mysite.co.il:80> | |
ServerAdmin webmaster@localhost | |
DocumentRoot C:/my-site | |
ServerName dev.mysite.co.il | |
<Directory "C:/my-site"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
Require all granted | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment