|
I appear to be having a few problems with this. I have:
<Directory /svnweb/css>
SetHandler default
</Directory>
<Directory /svnweb>
Options None
AllowOverride None
SetHandler perl-script
PerlHandler SVN::Web
Allow from all
</Directory>
which does nothing (it just tries to show an index of the dir when I look). I think this is because SVN::Web isn't loaded into mod_perl so it can't find the SVN::Web::handler() sub. So, I put a
PerlModule SVN::Web
in the httpd.conf and when I do that Apache (2.2) segfaults on startup ...
perl -MSVN::Web
does not segfault and is fine?
Solaris 10 x86, by the way.
|