Hello,

 I'm attempting to authenticate to a new trac site I just installed. I've
created the user in the htdigest file using htpasswd with a a really simple
password that'd be impossible to not type correctly.

But for some reason I am still having the authentication refused .

This is my vhost config:

<VirtualHost *:80>

   ServerName trac.mysite.com
   ## trac
  Alias /trac/ "/srv/trac/"
  <Directory "/srv/trac">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all

    # mod_python speeds things up considerably
    SetHandler mod_python
    PythonHandler trac.web.modpython_frontend
    PythonOption TracEnvParentDir "/srv/trac"
    PythonOption TracUriRoot "/trac"

    # authentication
    AuthType Digest
    AuthName "wiki-server"
    AuthDigestDomain /trac
    AuthUserFile "/etc/httpd/conf/digestpw"
    Require valid-user
    # authorization is handled internally by trac
  </Directory>

  ### subversion
  <Location "/svn">
    DAV svn
    SVNParentPath /srv/svn

    Order allow,deny
    Allow from all

    # authentication
    AuthType Digest
    AuthName "wiki-server"
    AuthDigestDomain /svn
    AuthUserFile "/etc/httpd/conf/digestpw"
    Require valid-user

    # authorization
    AuthzSVNAccessFile "/etc/httpd/conf/svn-auth.ini"
  </Location>
</VirtualHost>

This is the error that I'm seeing in the error log:

[Fri Aug 02 14:22:27 2013] [error] [client 67.86.246.234] Digest: user
`bluethundr' in realm `wiki-server' not found: /svn

I tried following this tutorial:

http://www.madboa.com/geek/trac-centos/#system-packages

Does anyone have an idea where I could be going wrong?

-- 
GPG me!!

gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to