Show More
@@ -7,11 +7,10 b'' | |||
|
7 | 7 | # The mod_dav_svn module does not support subversion repositories which are |
|
8 | 8 | # organized in subfolders. To support the repository groups of RhodeCode it is |
|
9 | 9 | # required to provide a <Location> block for each group pointing to the |
|
10 | # repository group sub folder. | |
|
11 | # | |
|
12 | # To ease the configuration RhodeCode auto generates this file whenever a | |
|
13 | # repository group is created/changed/deleted. Auto generation can be configured | |
|
14 | # in the ini file. | |
|
10 | # repository group sub folder. To ease the configuration RhodeCode auto | |
|
11 | # generates this file whenever a repository group is created/changed/deleted. | |
|
12 | # Auto generation can be configured in the ini file. Settings are prefixed with | |
|
13 | # ``svn.proxy``. | |
|
15 | 14 | # |
|
16 | 15 | # To include this configuration into your apache config you can use the |
|
17 | 16 | # `Include` directive. See the following example snippet of a virtual host how |
@@ -24,6 +23,18 b'' | |||
|
24 | 23 | # CustomLog ${'${APACHE_LOG_DIR}'}/access.log combined |
|
25 | 24 | # Include /path/to/generated/mod_dav_svn.conf |
|
26 | 25 | # </VirtualHost> |
|
26 | # | |
|
27 | # Depending on the apache configuration you may encounter the following error if | |
|
28 | # you are using speecial characters in your repository or repository group | |
|
29 | # names. | |
|
30 | # | |
|
31 | # ``Error converting entry in directory '/path/to/repo' to UTF-8`` | |
|
32 | # | |
|
33 | # In this case you have to change the LANG environment variable in the apache | |
|
34 | # configuration. This setting is typically located at ``/etc/apache2/envvars``. | |
|
35 | # You have to change it to an UTF-8 value like ``export LANG="en_US.UTF-8"``. | |
|
36 | # After changing this a stop and start of Apache is required (using restart | |
|
37 | # doesn't work). | |
|
27 | 38 | |
|
28 | 39 | |
|
29 | 40 | <Location "${location_root|n}"> |
General Comments 0
You need to be logged in to leave comments.
Login now