Initial commit.

This commit is contained in:
2021-05-24 22:18:33 +03:00
commit e2954d55f4
3701 changed files with 330017 additions and 0 deletions

17
httpd/conf.d/acme.conf Normal file
View File

@@ -0,0 +1,17 @@
Alias /.well-known/acme-challenge/ "/var/www/challenges/"
# Note, blocking access to <Location "/"> in a <VirtualHost> will override
# these global permissions. You will need to modify those domains
# to allow access to /.well-known/, or just copy the <Location> from below.
# See: http://httpd.apache.org/docs/2.2/sections.html
<Location "/.well-known/acme-challenge/">
Options -Indexes
Order allow,deny
Allow from all
</Location>
<Directory "/var/www/challenges">
Options -Indexes
Order allow,deny
Allow from all
</Directory>