##// END OF EJS Templates
Added request header downgrade for COPY command to work on https setup. Fixes #4307
marcink -
r1109:3aef7260 default
parent child Browse files
Show More
@@ -327,6 +327,8 b' Once installed you need to enable ``dav_'
327 .. code-block:: bash
327 .. code-block:: bash
328
328
329 $ sudo a2enmod dav_svn
329 $ sudo a2enmod dav_svn
330 $ sudo a2enmod headers
331
330
332
331 Configuring Apache Setup
333 Configuring Apache Setup
332 ========================
334 ========================
@@ -36,6 +36,9 b''
36 # After changing this a stop and start of Apache is required (using restart
36 # After changing this a stop and start of Apache is required (using restart
37 # doesn't work).
37 # doesn't work).
38
38
39 # fix https -> http downgrade with DAV. It requires an header downgrade for
40 # https -> http reverse proxy to work properly
41 RequestHeader edit Destination ^https: http: early
39
42
40 <Location "${location_root|n}">
43 <Location "${location_root|n}">
41 # The mod_dav_svn module takes the username from the apache request object.
44 # The mod_dav_svn module takes the username from the apache request object.
General Comments 0
You need to be logged in to leave comments. Login now