diff --git a/xExtension-ImageProxy/README.md b/xExtension-ImageProxy/README.md
index f930f8d..4a67a68 100644
--- a/xExtension-ImageProxy/README.md
+++ b/xExtension-ImageProxy/README.md
@@ -45,8 +45,8 @@ Along the following Apache configuration for the `www.example.org` virtual host:
RewriteRule ^ https://%1 [QSA,P,L]
RewriteCond %{REQUEST_URI} ^/proxy/http:/+(.*)$
RewriteRule ^ http://%1 [QSA,P,L]
+ # CRITICAL: Do NOT leave your proxy open to everyone!!!
- # CRITICAL: Do NOT leave your proxy open to everyone!!!
# Local network
Require ip 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8
# Users
@@ -58,4 +58,8 @@ Along the following Apache configuration for the `www.example.org` virtual host:
# Local network OR authenticated users
Satisfy any
+ # CRITICAL: Do NOT allow access to local resources!!!
+
+ Require all denied
+
```