Edgewall Software

Changes between Version 76 and Version 77 of TracModPython


Ignore:
Timestamp:
Aug 11, 2006, 8:26:13 PM (18 years ago)
Author:
Nick Pavlica
Comment:

Improve documentation.

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v76 v77  
    3131
    3232
    33 Note that the option `TracUriRoot` may or may not be necessary in your setup. Try without first, and if the URLs produced by Trac look wrong or if Trac does not seem to recognize the URLs correctly, add the `TracUriRoot` option.
     33Notes:
     34  1.  The option '''`TracUriRoot`''' may or may not be necessary in your setup. Try your configuration with out it, and if the URLs produced by Trac look wrong or if Trac does not seem to recognize the URLs correctly, add the '''`TracUriRoot`''' option.  You will notice that the `Location` and '''`TracUriRoot`''' have the same path.
     35  2.  Your web server may need the aplitiy to write to files in the '''`TracEnv`''' directory on your server.  You can change these by using the chown utility on *nix based servers.
     36  3.  You can test your mod_python installation by adding the following to your httpd.conf.  You should remove this when you are done testing for security reasons.
     37{{{
     38   <Location /mpinfo>
     39      SetHandler mod_python
     40      PythonHandler mod_python.testhandler
     41   </Location>
     42}}}
     43
    3444
    3545Configuring authentication works the same as for [wiki:TracCgi#AddingAuthentication CGI]: