6 | | == Simple configuration == |
| 6 | {{{#!div class="important" |
| 7 | ** A Word of Warning ** |
| 8 | |
| 9 | As of 16^th^ June 2010, the mod_python project is officially dead. If you are considering using mod_python for a new installation, '''please don't'''! There are known issues which will not be fixed and there are now better alternatives. Check out the main TracInstall pages for your target version for more information. |
| 10 | }}} |
| 11 | |
| 12 | |
| 13 | These instructions are for Apache 2; if you are still using Apache 1.3, you may have some luck with [trac:wiki:TracModPython2.7 TracModPython2.7], but you'll be totally on your own. |
| 14 | |
| 15 | [[PageOutline(2-3,Overview,inline)]] |
| 16 | |
| 17 | == Simple configuration: single project == #Simpleconfiguration |
13 | | ''Note: The exact path to the module depends on how the HTTPD installation is laid out.'' |
14 | | |
15 | | 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. |
16 | | {{{ |
| 24 | ''Note: The exact path to the module depends on how the HTTPD installation is laid out.'' |
| 25 | |
| 26 | On Debian using apt-get |
| 27 | {{{ |
| 28 | apt-get install libapache2-mod-python libapache2-mod-python-doc |
| 29 | }}} |
| 30 | (Still on Debian) after you have installed mod_python, you must enable the modules in apache2 (equivalent of the above Load Module directive): |
| 31 | {{{ |
| 32 | a2enmod python |
| 33 | }}} |
| 34 | On Fedora use, using yum: |
| 35 | {{{ |
| 36 | yum install mod_python |
| 37 | }}} |
| 38 | 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. Note: mod_python.testhandler is only available in mod_python 3.2+. |
| 39 | {{{ |
| 40 | #!xml |
30 | | </Location> |
31 | | }}} |
32 | | |
33 | | 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. |
| 59 | Order allow,deny |
| 60 | Allow from all |
| 61 | </Location> |
| 62 | }}} |
| 63 | |
| 64 | The option '''`TracUriRoot`''' may or may not be necessary in your setup. Try your configuration without it; if the URLs produced by Trac look wrong, if Trac does not seem to recognize URLs correctly, or you get an odd "No handler matched request to..." error, add the '''`TracUriRoot`''' option. You will notice that the `Location` and '''`TracUriRoot`''' have the same path. |
| 65 | |
| 66 | The options available are |
| 67 | {{{ |
| 68 | # For a single project |
| 69 | PythonOption TracEnv /var/trac/myproject |
| 70 | |
| 71 | # For multiple projects |
| 72 | PythonOption TracEnvParentDir /var/trac/myprojects |
| 73 | |
| 74 | # For the index of multiple projects |
| 75 | PythonOption TracEnvIndexTemplate /srv/www/htdocs/trac/project_list_template.html |
| 76 | |
| 77 | # A space delimitted list, with a "," between key and value pairs. |
| 78 | PythonOption TracTemplateVars key1,val1 key2,val2 |
| 79 | |
| 80 | # Useful to get the date in the wanted order |
| 81 | PythonOption TracLocale en_GB.UTF8 |
| 82 | |
| 83 | # See description above |
| 84 | PythonOption TracUriRoot /projects/myproject |
| 85 | }}} |
| 86 | |
| 87 | === Python Egg Cache === |
| 88 | |
| 89 | Compressed python eggs like Genshi are normally extracted into a directory named `.python-eggs` in the users home directory. Since apache's home usually is not writable an alternate egg cache directory can be specified like this: |
| 90 | {{{ |
| 91 | PythonOption PYTHON_EGG_CACHE /var/trac/myprojects/egg-cache |
| 92 | }}} |
| 93 | |
| 94 | or you can uncompress the Genshi egg to resolve problems extracting from it. |
37 | | Configuring authentication works just like for [wiki:TracCgi#AddingAuthentication CGI]: |
38 | | {{{ |
39 | | <Location "/projects/myproject/login"> |
40 | | AuthType Basic |
41 | | AuthName "myproject" |
42 | | AuthUserFile /var/trac/myproject/.htpasswd |
43 | | Require valid-user |
44 | | </Location> |
45 | | }}} |
| 98 | See corresponding section in the [wiki:TracModWSGI#ConfiguringAuthentication] page. |
| 99 | |
| 100 | |
| 101 | == Advanced Configuration |
| 102 | |
| 103 | === Setting the Python Egg Cache === |
| 104 | |
| 105 | If the Egg Cache isn't writeable by your Web server, you'll either have to change the permissions, or point Python to a location where Apache can write. This can manifest itself as a ''500 internal server error'' and/or a complaint in the syslog. |
| 106 | |
| 107 | {{{ |
| 108 | #!xml |
| 109 | <Location /projects/myproject> |
| 110 | ... |
| 111 | PythonOption PYTHON_EGG_CACHE /tmp |
| 112 | ... |
| 113 | </Location> |
| 114 | }}} |
| 115 | |
| 212 | For multiple projects, try restarting the server as well. |
| 213 | |
| 214 | ===Login Not Working=== |
| 215 | If you've used <Location /> directive, it will override any other directives, as well as <Location /Login>. |
| 216 | The workaround is to use negation expression as follows (for multi project setups): |
| 217 | {{{ |
| 218 | #!xml |
| 219 | #this one for other pages |
| 220 | <Location ~ "/*(?!login)"> |
| 221 | SetHandler mod_python |
| 222 | PythonHandler trac.web.modpython_frontend |
| 223 | PythonOption TracEnvParentDir /projects |
| 224 | PythonOption TracUriRoot / |
| 225 | |
| 226 | </Location> |
| 227 | #this one for login page |
| 228 | <Location ~ "/[^/]+/login"> |
| 229 | SetHandler mod_python |
| 230 | PythonHandler trac.web.modpython_frontend |
| 231 | PythonOption TracEnvParentDir /projects |
| 232 | PythonOption TracUriRoot / |
| 233 | |
| 234 | #remove these if you don't want to force SSL |
| 235 | RewriteEngine On |
| 236 | RewriteCond %{HTTPS} off |
| 237 | RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} |
| 238 | |
| 239 | AuthType Basic |
| 240 | AuthName "Trac" |
| 241 | AuthUserFile /projects/.htpasswd |
| 242 | Require valid-user |
| 243 | </Location> |
| 244 | }}} |
| 245 | |
| 246 | === Expat-related segmentation faults === #expat |
| 247 | |
| 248 | This problem will most certainly hit you on Unix when using Python 2.4. |
| 249 | In Python 2.4, some version of Expat (an XML parser library written in C) is used, |
| 250 | and if Apache is using another version, this results in segmentation faults. |
| 251 | As Trac 0.11 is using Genshi, which will indirectly use Expat, that problem |
| 252 | can now hit you even if everything was working fine before with Trac 0.10. |
| 253 | |
| 254 | See Graham Dumpleton's detailed [http://www.dscpl.com.au/wiki/ModPython/Articles/ExpatCausingApacheCrash explanation and workarounds] for the issue. |
| 255 | |
143 | | === Win32 Issues === |
| 280 | A success story: For me it worked out-of-box, with following trivial config: |
| 281 | {{{#!xml |
| 282 | SetHandler mod_python |
| 283 | PythonInterpreter main_interpreter |
| 284 | PythonHandler trac.web.modpython_frontend |
| 285 | PythonOption TracEnv /system/path/to/this/directory |
| 286 | PythonOption TracUriRoot /path/on/apache |
| 287 | |
| 288 | AuthType Basic |
| 289 | AuthName "ProjectName" |
| 290 | AuthUserFile /path/to/.htpasswd |
| 291 | Require valid-user |
| 292 | }}} |
| 293 | |
| 294 | The `TracUriRoot` is obviously the path you need to enter to the browser to get to the trac (e.g. domain.tld/projects/trac) |
| 295 | |
| 296 | === Additional .htaccess help === |
| 297 | |
| 298 | If you are using the .htaccess method you may have additional problems if your trac directory is inheriting .htaccess directives from another. This may also help to add to your .htaccess file: |
| 299 | |
| 300 | {{{ |
| 301 | <IfModule mod_rewrite.c> |
| 302 | RewriteEngine Off |
| 303 | </IfModule> |
| 304 | }}} |
| 305 | |
| 306 | === Platform specific issues |
| 307 | ==== Win32 Issues ==== |
| 347 | You also need a recent version of `mod_python` in order to avoid a runtime error ({{{argument number 2: a 'apr_pool_t *' is expected}}}) due to the default usage of multiple sub-interpreters. 3.2.8 ''should'' work, though it's probably better to use the workaround described in [trac:#3371 #3371], in order to force the use of the main interpreter: |
| 348 | {{{ |
| 349 | PythonInterpreter main_interpreter |
| 350 | }}} |
| 351 | This is anyway the recommended workaround for other well-known issues seen when using the Python bindings for Subversion within mod_python ([trac:#2611 #2611], [trac:#3455 #3455]). See in particular Graham Dumpleton's comment in [trac:comment:9:ticket:3455 #3455] explaining the issue. |
| 352 | |
| 353 | === Page layout issues === |
| 354 | |
| 355 | If the formatting of the Trac pages look weird chances are that the style sheets governing the page layout are not handled properly by the web server. Try adding the following lines to your apache configuration: |
| 356 | {{{ |
| 357 | #!xml |
| 358 | Alias /myproject/css "/usr/share/trac/htdocs/css" |
| 359 | <Location /myproject/css> |
| 360 | SetHandler None |
| 361 | </Location> |
| 362 | }}} |
| 363 | |
| 364 | Note: For the above configuration to have any effect it must be put after the configuration of your project root location, i.e. {{{<Location /myproject />}}}. |
| 365 | |
| 366 | Also, setting `PythonOptimize On` seems to mess up the page headers and footers, in addition to hiding the documentation for macros and plugins (see #Trac8956). Considering how little effect the option has, it is probably a good idea to leave it `Off`. |
| 367 | |
| 368 | === HTTPS issues === |
| 369 | |
| 370 | If you want to run Trac fully under https you might find that it tries to redirect to plain http. In this case just add the following line to your apache configuration: |
| 371 | {{{ |
| 372 | #!xml |
| 373 | <VirtualHost * > |
| 374 | DocumentRoot /var/www/myproject |
| 375 | ServerName trac.mycompany.com |
| 376 | SetEnv HTTPS 1 |
| 377 | .... |
| 378 | </VirtualHost> |
| 379 | }}} |
| 380 | |
| 381 | |
| 382 | === Segmentation fault with php5-mhash or other php5 modules === |
| 383 | You may encounter segfaults (reported on debian etch) if php5-mhash module is installed. Try to remove it to see if this solves the problem. See debian bug report [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=411487] |
| 384 | |
| 385 | Some people also have troubles when using php5 compiled with its own 3rd party libraries instead of system libraries. Check here [http://www.djangoproject.com/documentation/modpython/#if-you-get-a-segmentation-fault] |
| 386 | |