SVN с ошибками пути конфигурации apache2
Я только что настроил svn
через https (с apache2
). Я могу svn checkout
хорошо, однако коммиты терпят неудачу. Я могу видеть из apache2
Журналы, что svn
Сервер ищет не в том месте, чтобы найти репозиторий для выполнения коммита. Вот мой apache2
443.example.com.conf файл:
<IfModule mod_ssl.c>
<virtualhost *:443>
# requests to https://example.com land here
ServerName example.com
DocumentRoot /home/me/svn-repos
# global properties for all directories in this site
<Location />
# do not use .htaccess files
allowoverride none
#DirectoryIndex index.html
#require all granted
DAV svn
SVNParentPath /home/me/svn-repos
AuthType Basic
AuthName "svn repositories"
AuthUserFile blah.passwd
#<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
#</LimitExcept>
</Location>
SSLEngine On
SSLCertificateFile blah
SSLCertificateKeyFile blah
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
ErrorDocument 400 /index.html
ErrorDocument 401 /index.html
# lots more ErrorDocument entries
</virtualhost>
</IfModule>
Обратите внимание, что все мои svn
хранилища находятся в каталогах под /home/me/svn-repos
(например. /home/me/svn-repos/repo1
, /home/me/svn-repos/repo2
, так далее)
Поэтому я проверяю свежую локальную копию одного из моих репозиториев:
$ cd /tmp
$ svn co --username me https://example.com/repo1 repo1
Authentication realm: <https://example.com:443> svn repositories
Password for 'me': ***
A repo1/file1.txt
Checked out revision 1.
Все идет нормально. Но тогда, когда я пытаюсь и фиксирую:
$ touch file2.txt
$ svn add file2.txt
A file2.txt
$ svn ci file2.txt -m added
Authentication realm: <https://example.com:443> svn repositories
Password for 'me': ***
Adding file2.txt
svn: E175009: Commit failed (details follow):
svn: E175009: The XML response contains invalid XML
svn: E130003: Malformed XML: no element found
И я могу видеть из apache2
журнал ошибок, svn
сервер ищет неправильное место для хранилища:
$ sudo tail -4 /var/log/apache2/error.log
[Sat Dec 02 20:23:29.626227 2017] [:error] [pid 123] (20014)Internal error (specific information not available): [client x.x.x.x:x] Can't open file '/home/me/svn-repos/index.html/format': Not a directory
[Sat Dec 02 20:23:29.626264 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not fetch resource information. [404, #0]
[Sat Dec 02 20:23:29.626272 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not find the requested SVN filesystem [404, #20]
[Sat Dec 02 20:23:29.626277 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not find the requested SVN filesystem [404, #20]
Файл, который он ищет, /home/me/svn-repos/repo1/format
Однако он не добавляет правильный путь, чтобы найти файл. Я подозреваю, что это означает, что мне нужно положить что-то в мой apache2
443.example.com.conf файл, но я не могу думать, что.
Обновить
Я внес следующие изменения в файл 443.example.com.conf:
# ErrorDocument 404 /index.html
ErrorDocument 404 /indexyz.html
И теперь, когда я пытаюсь сделать коммит, сообщение об ошибке меняется на это:
[Sat Dec 02 20:39:00.153942 2017] [:error] [pid 123] (20014)Internal error (specific information not available): [client 192.168.1.177:50228] Can't open file '/home/me/svn-repos/indexyz.html/format': No such file or directory
[Sat Dec 02 20:39:00.153979 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not fetch resource information. [404, #0]
[Sat Dec 02 20:39:00.153987 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not find the requested SVN filesystem [404, #2]
[Sat Dec 02 20:39:00.153992 2017] [dav:error] [pid 123] [client x.x.x.x:x] Could not find the requested SVN filesystem [404, #2]
Но это все еще не очень помогает.