Hello,

I have a number of Trac repositories being served by Apache using the
configuration:

<Location /trac>
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnvParentDir /data/trac
  PythonOption TracUriRoot /trac

  Order allow,deny
  Allow from all
</Location>

So any URL that follows /trac/project gets mapped to the above
directives. However, I would like access to another Trac project which
does not follow the above rules:

<Location /ext/rcs>
  SSLRequireSSL

  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnv /data/trac/rcs
  Options None

  AuthName "Cert auth"
  AuthType Basic
  AuthUserFile /etc/httpd/conf.d/trac/rcs.access
  Require valid-user
</Location>

However, I get the following error message when using the URL
https://trac-server/ext/rcs:

Error: Not Found
No handler matched request to /rcs

Any help will be greatly appreciated.

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.

Reply via email to