mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 07:33:18 +02:00
17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
![]() |
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
|
||
|
|
||
|
<Directory /var/lib/dehydrated/challenges>
|
||
|
Options None
|
||
|
AllowOverride None
|
||
|
Header set Content-Type "application/jose+json"
|
||
|
<IfModule mod_authz_core.c>
|
||
|
# Apache 2.4
|
||
|
Require all granted
|
||
|
</IfModule>
|
||
|
<IfModule !mod_authz_core.c>
|
||
|
# Apache 2.2
|
||
|
Order deny,allow
|
||
|
Allow from all
|
||
|
</IfModule>
|
||
|
</Directory>
|