Rename README.AuthType-Basic --> README.AuthType-Basic.md

This commit is contained in:
2016-11-29 03:11:25 +01:00
parent 0354d4e4f9
commit 7a9d8b4479

14
README.AuthType-Basic.md Normal file
View File

@ -0,0 +1,14 @@
Falls eine Authentifizierung `AuthType Basic` für das Wurzelverzeichnis `DocimentRoot` definiert ist, so muss sichergestellt sein, dass die URI `/.well-known/acme-challenge/` für die Let's Encrypt Server zur Verifizierung während des Zertifizierungsvorgangs **ohne Authentifizierung** erreichbar ist:
<Location />
AuthType Basic
AuthName "Authentification required"
AuthUserFile <path-to-htpasswd-file>
Require valid-user
# - Allow Let's Encrypt Path
# -
SetEnvIf Request_URI ^/.well-known/acme-challenge(.*) allow
Order allow,deny
Allow from env=allow
Satisfy any
</Location>