Added request header downgrade for COPY command to work on https setup. Fixes #4307

This commit is contained in:
Marcin Kuzminski 2016-11-11 20:06:48 +01:00
parent fc63a03903
commit d58bae5676
2 changed files with 5 additions and 0 deletions

View file

@ -327,6 +327,8 @@ Once installed you need to enable ``dav_svn``:
.. code-block:: bash
$ sudo a2enmod dav_svn
$ sudo a2enmod headers
Configuring Apache Setup
========================

View file

@ -36,6 +36,9 @@
# After changing this a stop and start of Apache is required (using restart
# doesn't work).
# fix https -> http downgrade with DAV. It requires an header downgrade for
# https -> http reverse proxy to work properly
RequestHeader edit Destination ^https: http: early
<Location "${location_root|n}">
# The mod_dav_svn module takes the username from the apache request object.