diff --git a/README.AuthType-Basic.md b/README.AuthType-Basic.md
index d061631..3247f05 100644
--- a/README.AuthType-Basic.md
+++ b/README.AuthType-Basic.md
@@ -3,6 +3,10 @@
# - für die Let's Encrypt Server zur Verifizierung während des Zertifizierungsvorgangs
# - **ohne Authentifizierung** erreichbar ist:
+# -----
+# Apache Webserver
+# -----
+
# - Apache 2.2 style
# -
@@ -36,3 +40,21 @@ oder noch etwas einfacher:
Require all granted
+
+
+# -----
+# - NGINX
+# -----
+
+ ## -
+ ## - /etc/nginx/snippets/letsencrypt-acme-challenge.conf:
+ ## -
+location /.well-known/acme-challenge/ {
+ alias /var/www/dehydrated/;
+
+ location ~ /.well-known/acme-challenge/(.*) {
+ default_type text/plain;
+ }
+
+ auth_basic off;
+}