blob: a2d1fa26955ced934f51f50e2ff8a901c8a09651 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<VirtualHost *:8080>
ServerName localhost
DocumentRoot "/var/www/html/"
<Directory "/var/www/html/">
Options All
AllowOverride All
Require all granted
</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>
|