docker-webdav-apache/conf/sites-available/default.conf
Steven Polley 496f9a554b
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2023-06-25 09:38:35 -06:00

12 lines
341 B
Plaintext

<VirtualHost *:80>
ServerName localhost
DocumentRoot "/var/www/html/"
<Directory "/var/www/html/">
Require all denied
</Directory>
CustomLog /proc/self/fd/1 combined
ErrorLog /proc/self/fd/2
# This lets certain DAV methods work behind an SSL reverse proxy.
RequestHeader edit Destination ^https http early
</VirtualHost>