| View previous topic :: View next topic |
| Author |
Message |
turtles Veteran


Joined: 31 Dec 2004 Posts: 1146 Location: (44.057116, -123.103394)
|
Posted: Sun Jan 06, 2013 7:59 am Post subject: Apache 2.4: ${SVN_REPOS_LOC} is defined in what file? |
|
|
Hi all apache2 is throwing a fit when I start it
| Quote: | | Config variable ${SVN_REPOS_LOC} is not defined |
I am not able to find where I define this :
${SVN_REPOS_LOC} is defined in what file?
I tried in /etc/conf.d/apache2
and /etc/apache2/modules.d/47_mod_dav_svn.conf
| Code: | | SVN_REPOS_LOC=/var/svn |
I read http://en.gentoo-wiki.com/wiki/Subversion/Install
is this a bug?
UPDATE I greped the entire system and only found it in:
The ebuilds and /etc/apache2/modules.d/47_mod_dav_svn.conf
So it must be a special gentoo setting. _________________ Perl 5.16 now 3 bugs away |
|
| Back to top |
|
 |
sajo_raftman n00b


Joined: 13 Mar 2007 Posts: 4
|
Posted: Wed Feb 13, 2013 6:19 pm Post subject: |
|
|
Hi, I had the same problem. The cause is that one of the conf files in /etc/apache2/modules.d/ had
| Code: | <IfDefine SVN_AUTHZ>
LoadModule authz_svn_module modules/mod_authz_svn.so
</IfDefine>
|
In my case this was needed to pass svn trough https.
It was resolved adding -D SVN_AUTHZ to APACHE2_OPTS in /etc/conf.d/apache2 file. |
|
| Back to top |
|
 |
|