-
-
Save brainv/50fbde1385fb0f1cbbeafadbc90a1094 to your computer and use it in GitHub Desktop.
Revisions
-
lynt-smitka revised this gist
Sep 3, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ status 403 /blockdot rewrite { r /\.(?!well-known\/) to /blockdot } -
lynt-smitka revised this gist
Sep 3, 2018 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ status 403 /blockdot rewrite { r /\.(?!well-known\/)$ to /blockdot } -
lynt-smitka revised this gist
Aug 25, 2018 . 2 changed files with 7 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ <Directory ~ "/\.(?!well-known\/)"> Order deny,allow Deny from all </Directory> 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ <Directory ~ "/\.(?!well-known\/)"> Require all denied </Directory> -
lynt-smitka revised this gist
Jul 20, 2018 . No changes.There are no files selected for viewing
-
lynt-smitka created this gist
Jul 20, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ RewriteRule "(^|/)\.(?!well-known\/)" - [F] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ location ~ /\.(?!well-known\/) { deny all; }