From eda62a94e65de2bfbda84b22a6dcbd2a0e42109f Mon Sep 17 00:00:00 2001 From: An Phan Date: Tue, 10 Feb 2015 23:50:07 +0800 Subject: [PATCH] Fixes #16 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e315a9..fadd337 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ But wait, this will lock you out from your content as well! Thus introducing... ### Deny All Access Except Yours ``` apacheconf -Order deny, allow +Order deny,allow Deny from All Allow from xxx.xxx.xxx.xxx ``` @@ -137,7 +137,7 @@ Now of course there's a reversed version: ### Allow All Access Except Spammers' ``` apacheconf -Order deny, allow +Order deny,allow Allow from All Deny from xxx.xxx.xxx.xxx Deny from xxx.xxx.xxx.xxy