Skip to content

Instantly share code, notes, and snippets.

@teddevaal
Created January 29, 2014 15:04
Show Gist options
  • Save teddevaal/8689862 to your computer and use it in GitHub Desktop.
Save teddevaal/8689862 to your computer and use it in GitHub Desktop.
2.2 configuration:
Order deny,allow
Deny from all
2.4 configuration:
Require all denied
In this example, all requests are allowed.
2.2 configuration:
Order allow,deny
Allow from all
2.4 configuration:
Require all granted
2.2 configuration:
Order Deny,Allow
Deny from all
Allow from example.org
2.4 configuration:
Require host example.org
@teddevaal
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment