Commit 77f114f0 authored by Lukas Schauer's avatar Lukas Schauer

Merge pull request #201 from glensc/patch-1

Update wellknown.md
parents a2867410 f0a92dfa
...@@ -30,7 +30,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt ...@@ -30,7 +30,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt
<Directory /var/www/letsencrypt> <Directory /var/www/letsencrypt>
Options None Options None
AllowOverride None AllowOverride None
Order allow,deny
Allow from all # Apache 2.x
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</Directory> </Directory>
``` ```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment