-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Jamena McInteer
committed
Jul 15, 2016
1 parent
22fd3d7
commit 3acebf8
Showing
1,176 changed files
with
198,992 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
// Silence is golden. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Only allow direct access to specific Web-available files. | ||
|
||
# Apache 2.2 | ||
<IfModule !mod_authz_core.c> | ||
Order Deny,Allow | ||
Deny from all | ||
</IfModule> | ||
|
||
# Apache 2.4 | ||
<IfModule mod_authz_core.c> | ||
Require all denied | ||
</IfModule> | ||
|
||
# Akismet CSS and JS | ||
<FilesMatch "^(form\.js|akismet\.js|akismet\.css)$"> | ||
<IfModule !mod_authz_core.c> | ||
Allow from all | ||
</IfModule> | ||
|
||
<IfModule mod_authz_core.c> | ||
Require all granted | ||
</IfModule> | ||
</FilesMatch> | ||
|
||
# Akismet images | ||
<FilesMatch "^logo-full-2x\.png$"> | ||
<IfModule !mod_authz_core.c> | ||
Allow from all | ||
</IfModule> | ||
|
||
<IfModule mod_authz_core.c> | ||
Require all granted | ||
</IfModule> | ||
</FilesMatch> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.