Skip to content

Commit

Permalink
Merge pull request #201 from glensc/patch-1
Browse files Browse the repository at this point in the history
Update wellknown.md
  • Loading branch information
lukas2511 committed May 16, 2016
2 parents a286741 + f0a92df commit 77f114f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/wellknown.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt
<Directory /var/www/letsencrypt>
Options 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>
```

0 comments on commit 77f114f

Please sign in to comment.