##// END OF EJS Templates
svn-support: Add a note about the 'Error converting entry in directory to UTF-8' error.
Martin Bornhold -
r857:e9660b32 default
parent child Browse files
Show More
@@ -7,11 +7,10 b''
7 # The mod_dav_svn module does not support subversion repositories which are
7 # The mod_dav_svn module does not support subversion repositories which are
8 # organized in subfolders. To support the repository groups of RhodeCode it is
8 # organized in subfolders. To support the repository groups of RhodeCode it is
9 # required to provide a <Location> block for each group pointing to the
9 # required to provide a <Location> block for each group pointing to the
10 # repository group sub folder.
10 # repository group sub folder. To ease the configuration RhodeCode auto
11 #
11 # generates this file whenever a repository group is created/changed/deleted.
12 # To ease the configuration RhodeCode auto generates this file whenever a
12 # Auto generation can be configured in the ini file. Settings are prefixed with
13 # repository group is created/changed/deleted. Auto generation can be configured
13 # ``svn.proxy``.
14 # in the ini file.
15 #
14 #
16 # To include this configuration into your apache config you can use the
15 # To include this configuration into your apache config you can use the
17 # `Include` directive. See the following example snippet of a virtual host how
16 # `Include` directive. See the following example snippet of a virtual host how
@@ -24,6 +23,18 b''
24 # CustomLog ${'${APACHE_LOG_DIR}'}/access.log combined
23 # CustomLog ${'${APACHE_LOG_DIR}'}/access.log combined
25 # Include /path/to/generated/mod_dav_svn.conf
24 # Include /path/to/generated/mod_dav_svn.conf
26 # </VirtualHost>
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 <Location "${location_root|n}">
40 <Location "${location_root|n}">
General Comments 0
You need to be logged in to leave comments. Login now