/etc/apache2/conf-available/dehydrated.conf is in dehydrated-apache2 0.6.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #
# Apache configuration to serve http-01 ACME challenges responses.
# This is included from the dehydrated-apache2 package, thought to be used
# with dehydrated as packaged in Debian.
<IfModule proxy_module>
# Do not proxy ACME challenge responses
ProxyPass /.well-known/acme-challenge/ !
</IfModule>
<IfModule !alias_module>
# Load the alias module, if not loaded already
Include /etc/apache2/mods-available/alias.load
Include /etc/apache2/mods-available/alias.conf
</IfModule>
<IfModule alias_module>
# Serve ACME challenge responses
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/acme-challenges/
</IfModule>
<Directory /var/lib/dehydrated/acme-challenges/>
Options FollowSymlinks
Options -Indexes
AllowOverride None
# Apache >= 2.3
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
# Apache < 2.3
<IfModule !mod_authz_core.c>
Order Allow,Deny
Allow from all
</IfModule>
</Directory>
|