Skip to content

Instantly share code, notes, and snippets.

@nebiros
Created February 9, 2015 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nebiros/68f8c6776715ac1c206b to your computer and use it in GitHub Desktop.
Save nebiros/68f8c6776715ac1c206b to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName app.localhost
ServerAdmin my@mail.com
DocumentRoot "D:\Projects\app\public"
AddDefaultCharset UTF-8
<Directory "D:\Projects\app\public">
Options MultiViews -Indexes FollowSymLinks
AllowOverride All
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
Order deny,allow
Deny from all
</Limit>
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment