From 9e7fb1f5940445521dbeed165f70fcd443179c49 Mon Sep 17 00:00:00 2001 From: ckubu Date: Sun, 2 Sep 2018 18:55:35 +0200 Subject: [PATCH] Adjust README.AuthType-Basic.md. --- README.AuthType-Basic.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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; +}