Skip to content

Instantly share code, notes, and snippets.

@hitautodestruct
Created September 17, 2014 12:27
Show Gist options
  • Save hitautodestruct/c5caf868af6385b45600 to your computer and use it in GitHub Desktop.
Save hitautodestruct/c5caf868af6385b45600 to your computer and use it in GitHub Desktop.
Apache virtual hosts config for a local site
<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