Adjust README.AuthType-Basic.md.

This commit is contained in:
Christoph 2018-09-02 18:55:35 +02:00
parent c12ec9bdfa
commit 9e7fb1f594

View File

@ -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
# -
<Location />
@ -36,3 +40,21 @@ oder noch etwas einfacher:
<Location /.well-known>
Require all granted
</Location>
# -----
# - 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;
}