forked from brielle/lets-encrypt-scripts
12 lines
314 B
Plaintext
12 lines
314 B
Plaintext
|
<IfModule alias_module>
|
||
|
Alias /.well-known/acme-challenge "/var/www/letsencrypt-root/.well-known/acme-challenge"
|
||
|
|
||
|
<Directory "/var/www/letsencrypt-root/.well-known/acme-challenge">
|
||
|
Options FollowSymlinks
|
||
|
AllowOverride None
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
#Require all granted
|
||
|
</Directory>
|
||
|
</IfModule>
|