I have SVN server running on one of my domains as svn.mydomain.com and would like to setup a 401 error document for when the user authentication fails.

As svn isn't an actual folder or real subdomain, i'm confused as to where I can put the ErrorDocument 401 line.

It doesn't have to be in the .htaccess file, if it will work I could put it in the apache config, but not sure if that will work?

Thanks for any ideas.

link|improve this question

46% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I put it into my virtual host definition file at /etc/apache2/sites-available/svn.mydomain.com

<Location />
    DAV svn
    SVNPath /var/lib/svn
    # other svn-config goes here

    ErrorDocument 401 "Incorrect username or password"
</Location>

CU, arnep

link|improve this answer
That works great :-) Now I just need to figure out what the relative path to my 401.php file should be – Adam Dempsey Nov 30 '09 at 11:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.