|
close
Warning:
Can't synchronize with repository "(default)" (/hepforge/svn/w2pho does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Feb 27, 2012, 2:25:34 PM (13 years ago)
- Author:
-
trac
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v1
|
v2
|
|
1 | 1 | = Trac with FastCGI = |
2 | 2 | |
3 | | Since version 0.9, Trac supports being run through the [http://www.fastcgi.com/ FastCGI] interface. Like [wiki:TracModPython mod_python], this allows Trac to remain resident, and is faster than external CGI interfaces which must start a new process for each request. However, unlike mod_python, it is able to support [http://httpd.apache.org/docs/suexec.html SuEXEC]. Additionally, it is supported by much wider variety of web servers. |
| 3 | [http://www.fastcgi.com/ FastCGI] interface allows Trac to remain resident much like with [wiki:TracModPython mod_python]. It is faster than external CGI interfaces which must start a new process for each request. However, unlike mod_python, FastCGI supports [http://httpd.apache.org/docs/suexec.html Apache SuEXEC], i.e. run with different permissions than web server. Additionally, it is supported by much wider variety of web servers. |
| 4 | |
| 5 | '''Note for Windows:''' Trac's FastCGI does not run under Windows, as Windows does not implement `Socket.fromfd`, which is used by `_fcgi.py`. If you want to connect to IIS, you may want to try [trac:TracOnWindowsIisAjp AJP]. |
4 | 6 | |
5 | 7 | == Simple Apache configuration == |
6 | 8 | |
7 | 9 | There are two FastCGI modules commonly available for Apache: `mod_fastcgi` and |
8 | | `mod_fcgid`. The `FastCgiIpcDir` and `FastCgiConfig` directives discussed |
9 | | below are `mod_fastcgi` directives; the `DefaultInitEnv` is a `mod_fgcid` |
10 | | directive. |
11 | | |
12 | | For `mod_fastcgi`, add the following to an appropriate Apache configuration |
13 | | file: |
| 10 | `mod_fcgid` (preferred). The latter is more up-to-date. |
| 11 | |
| 12 | ==== setup with `mod_fastcgi` ==== |
| 13 | `mod_fastcgi` uses `FastCgiIpcDir` and `FastCgiConfig` directives that should be added to an appropriate Apache configuration file: |
14 | 14 | {{{ |
15 | 15 | # Enable fastcgi for .fcgi files |
… |
… |
|
37 | 37 | }}} |
38 | 38 | |
39 | | But neither of these will work for `mod_fcgid`. A similar but partial |
40 | | solution for `mod_fcgid` is: |
| 39 | ==== setup with `mod_fcgid` ==== |
| 40 | Configure `ScriptAlias` (see TracCgi for details), but call `trac.fcgi` |
| 41 | instead of `trac.cgi`. Note that slash at the end - it is important. |
| 42 | {{{ |
| 43 | ScriptAlias /trac /path/to/www/trac/cgi-bin/trac.fcgi/ |
| 44 | }}} |
| 45 | |
| 46 | To setup Trac environment for `mod_fcgid` it is necessary to use |
| 47 | `DefaultInitEnv` directive. It cannot be used in `Directory` or |
| 48 | `Location` context, so if you need to support multiple projects, try |
| 49 | alternative environment setup below. |
| 50 | |
41 | 51 | {{{ |
42 | 52 | DefaultInitEnv TRAC_ENV /path/to/env/trac/ |
43 | 53 | }}} |
44 | | But this cannot be used in `Directory` or `Location` context, which makes it |
45 | | difficult to support multiple projects. |
46 | | |
47 | | A better method which works for both of these modules (and for [http://www.lighttpd.net/ lighttpd] and CGI as well), because it involves |
48 | | no server configuration settings for environment variables, is to set one |
49 | | of the variables in `trac.fcgi`, e.g.: |
| 54 | |
| 55 | ==== alternative environment setup ==== |
| 56 | A better method to specify path to Trac environment it to embed the path |
| 57 | into `trac.fcgi` script itself. That doesn't require configuration of server |
| 58 | environment variables, works for both FastCgi modules |
| 59 | (and for [http://www.lighttpd.net/ lighttpd] and CGI as well): |
50 | 60 | {{{ |
51 | 61 | import os |
… |
… |
|
58 | 68 | }}} |
59 | 69 | |
60 | | Using this method, different projects can be supported by using different |
61 | | `.fcgi` scripts with different `ScriptAliases`, copying and appropriately |
62 | | renaming `trac.fcgi` and adding the above code to create each such script. |
| 70 | With this method different projects can be supported by using different |
| 71 | `.fcgi` scripts with different `ScriptAliases`. |
| 72 | |
| 73 | See [https://coderanger.net/~coderanger/httpd/fcgi_example.conf this fcgid example config] which uses a !ScriptAlias directive with trac.fcgi with a trailing / like this: |
| 74 | {{{ |
| 75 | ScriptAlias / /srv/tracsite/cgi-bin/trac.fcgi/ |
| 76 | }}} |
| 77 | |
| 78 | == Simple Cherokee Configuration == |
| 79 | |
| 80 | The configuration on Cherokee's side is quite simple. You will only need to know that you can spawn Trac as an SCGI process. |
| 81 | You can either start it manually, or better yet, automatically by letting Cherokee spawn the server whenever it is down. |
| 82 | First set up an information source in cherokee-admin with a local interpreter. |
| 83 | |
| 84 | {{{ |
| 85 | Host: |
| 86 | localhost:4433 |
| 87 | |
| 88 | Interpreter: |
| 89 | /usr/bin/tracd —single-env —daemonize —protocol=scgi —hostname=localhost —port=4433 /path/to/project/ |
| 90 | }}} |
| 91 | |
| 92 | If the port was not reachable, the interpreter command would be launched. Note that, in the definition of the information source, you will have to manually launch the spawner if you use a ''Remote host'' as ''Information source'' instead of a ''Local interpreter''. |
| 93 | |
| 94 | After doing this, we will just have to create a new rule managed by the SCGI handler to access Trac. It can be created in a new virtual server, trac.example.net for instance, and will only need two rules. The '''default''' one will use the SCGI handler associated to the previously created information source. |
| 95 | The second rule will be there to serve the few static files needed to correctly display the Trac interface. Create it as ''Directory rule'' for ''/chrome/common'' and just set it to the ''Static files'' handler and with a ''Document root'' that points to the appropriate files: ''/usr/share/trac/htdocs/'' |
| 96 | |
| 97 | Note:\\ |
| 98 | If the tracd process fails to start up, and cherokee displays a 503 error page, you might be missing the [http://trac.saddi.com/flup python-flup] package.\\ |
| 99 | Python-flup is a dependency which provides trac with SCGI capability. You can install it on debian based systems with: |
| 100 | {{{ |
| 101 | sudo apt-get install python-flup |
| 102 | }}} |
63 | 103 | |
64 | 104 | == Simple Lighttpd Configuration == |
… |
… |
|
69 | 109 | environments. It has a very low memory footprint compared to other web servers and takes care of CPU load. |
70 | 110 | |
71 | | For using `trac.fcgi` with lighttpd add the following to your lighttpd.conf: |
72 | | {{{ |
| 111 | For using `trac.fcgi`(prior to 0.11) / fcgi_frontend.py (0.11) with lighttpd add the following to your lighttpd.conf: |
| 112 | {{{ |
| 113 | #var.fcgi_binary="/usr/bin/python /path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory |
| 114 | var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable |
73 | 115 | fastcgi.server = ("/trac" => |
| 116 | |
74 | 117 | ("trac" => |
75 | 118 | ("socket" => "/tmp/trac-fastcgi.sock", |
76 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 119 | "bin-path" => fcgi_binary, |
77 | 120 | "check-local" => "disable", |
78 | 121 | "bin-environment" => |
… |
… |
|
87 | 130 | using `bin-environment` (as in the section above on Apache configuration). |
88 | 131 | |
| 132 | Note that lighttpd has a bug related to 'SCRIPT_NAME' and 'PATH_INFO' when the uri of fastcgi.server is '/' instead of '/trac' in this example, see #Trac2418. This should be fixed since lighttpd 1.4.23, and you may need to add `"fix-root-scriptname" => "enable"` as parameter of fastcgi.server. |
| 133 | |
89 | 134 | For using two projects with lighttpd add the following to your `lighttpd.conf`: |
90 | 135 | {{{ |
… |
… |
|
92 | 137 | ("first" => |
93 | 138 | ("socket" => "/tmp/trac-fastcgi-first.sock", |
94 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 139 | "bin-path" => fcgi_binary, |
95 | 140 | "check-local" => "disable", |
96 | 141 | "bin-environment" => |
… |
… |
|
101 | 146 | ("second" => |
102 | 147 | ("socket" => "/tmp/trac-fastcgi-second.sock", |
103 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 148 | "bin-path" => fcgi_binary, |
104 | 149 | "check-local" => "disable", |
105 | 150 | "bin-environment" => |
… |
… |
|
115 | 160 | if both are running from the same `trac.fcgi` script. |
116 | 161 | {{{ |
117 | | #!html |
118 | | <p style="background: #fdc; border: 2px solid #d00; font-style: italic; padding: 0 .5em; margin: 1em 0;"> |
119 | | <strong>Note from c00i90wn:</strong> It's very important the order on which server.modules are loaded, if mod_auth is not loaded <strong>BEFORE</strong> mod_fastcgi, then the server will fail to authenticate the user. |
120 | | </p> |
| 162 | #!div class=important |
| 163 | '''Note''' It's very important the order on which server.modules are loaded, if mod_auth is not loaded '''BEFORE''' mod_fastcgi, then the server will fail to authenticate the user. |
121 | 164 | }}} |
122 | 165 | For authentication you should enable mod_auth in lighttpd.conf 'server.modules', select auth.backend and auth rules: |
… |
… |
|
177 | 220 | ("trac" => |
178 | 221 | ("socket" => "/tmp/trac-fastcgi.sock", |
179 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 222 | "bin-path" => fcgi_binary, |
180 | 223 | "check-local" => "disable", |
181 | 224 | "bin-environment" => |
… |
… |
|
196 | 239 | ( |
197 | 240 | "socket" => "/tmp/trac.sock", |
198 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 241 | "bin-path" => fcgi_binary, |
199 | 242 | "check-local" => "disable", |
200 | 243 | "bin-environment" => |
… |
… |
|
222 | 265 | ("trac" => |
223 | 266 | ("socket" => "/tmp/trac-fastcgi.sock", |
224 | | "bin-path" => "/path/to/cgi-bin/trac.fcgi", |
| 267 | "bin-path" => fcgi_binary, |
225 | 268 | "check-local" => "disable", |
226 | 269 | "bin-environment" => |
… |
… |
|
231 | 274 | ) |
232 | 275 | }}} |
233 | | For details about languages specification see TracFaq question 2.13. |
| 276 | For details about languages specification see [trac:TracFaq TracFaq] question 2.13. |
234 | 277 | |
235 | 278 | Other important information like [http://trac.lighttpd.net/trac/wiki/TracInstall this updated TracInstall page], [wiki:TracCgi#MappingStaticResources and this] are useful for non-fastcgi specific installation aspects. |
… |
… |
|
241 | 284 | Note about running lighttpd with reduced permissions: |
242 | 285 | |
243 | | If nothing else helps and trac.fcgi doesn't start with lighttpd settings __server.username = "www-data"__, __server.groupname = "www-data"__, then in the `bin-environment` section set `PYTHON_EGG_CACHE` to the home directory of `www-data` or some other directory accessible to this account for writing. |
244 | | |
245 | | |
246 | | == Simple LiteSpeed Configuration == |
| 286 | If nothing else helps and trac.fcgi doesn't start with lighttpd settings `server.username = "www-data"`, `server.groupname = "www-data"`, then in the `bin-environment` section set `PYTHON_EGG_CACHE` to the home directory of `www-data` or some other directory accessible to this account for writing. |
| 287 | |
| 288 | |
| 289 | == Simple !LiteSpeed Configuration == |
247 | 290 | |
248 | 291 | The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.litespeedtech.com/ LiteSpeed]. |
249 | 292 | |
250 | | LiteSpeed web server is an event-driven asynchronous Apache replacement designed from the ground-up to be secure, scalable, and operate with minimal resources. LiteSpeed can operate directly from an Apache config file and is targeted for business-critical environments. |
251 | | |
252 | | Setup |
253 | | |
254 | | 1) Please make sure you have first have a working install of a Trac project. Test install with “tracd” first. |
255 | | |
256 | | 2) Create a Virtual Host for this setup. From now on we will refer to this vhost as TracVhost. For this tutorial we will be assuming that your trac project will be accessible via: |
| 293 | !LiteSpeed web server is an event-driven asynchronous Apache replacement designed from the ground-up to be secure, scalable, and operate with minimal resources. !LiteSpeed can operate directly from an Apache config file and is targeted for business-critical environments. |
| 294 | |
| 295 | === Setup === |
| 296 | |
| 297 | 1. Please make sure you have first have a working install of a Trac project. Test install with “tracd” first. |
| 298 | |
| 299 | 2. Create a Virtual Host for this setup. From now on we will refer to this vhost as !TracVhost. For this tutorial we will be assuming that your trac project will be accessible via: |
257 | 300 | |
258 | 301 | {{{ |
… |
… |
|
260 | 303 | }}} |
261 | 304 | |
262 | | 3) Go “TracVhost → External Apps” tab and create a new “External Application”. |
| 305 | 3. Go “!TracVhost → External Apps” tab and create a new “External Application”. |
263 | 306 | |
264 | 307 | {{{ |
… |
… |
|
278 | 321 | }}} |
279 | 322 | |
280 | | 4) Optional. If you need to use htpasswd based authentication. Go to “TracVhost → Security” tab and create a new security “Realm”. |
| 323 | 4. Optional. If you need to use htpasswd based authentication. Go to “!TracVhost → Security” tab and create a new security “Realm”. |
281 | 324 | |
282 | 325 | {{{ |
… |
… |
|
288 | 331 | If you don’t have a htpasswd file or don’t know how to create the entries within one, go to http://sherylcanter.com/encrypt.php, to generate the user:password combos. |
289 | 332 | |
290 | | 5) Go to “PythonVhost → Contexts” and create a new “FCGI Context”. |
| 333 | 5. Go to “!PythonVhost → Contexts” and create a new “FCGI Context”. |
291 | 334 | |
292 | 335 | {{{ |
293 | 336 | URI: /trac/ <--- URI path to bind to python fcgi app we created |
294 | 337 | Fast CGI App: [VHost Level] MyTractFCGI <--- select the trac fcgi extapp we just created |
295 | | Realm: TracUserDB <--- only if (4) is set. select ream created in (4) |
296 | | }}} |
297 | | |
298 | | 6) Modify /fullpathto/mytracproject/conf/trac.ini |
| 338 | Realm: TracUserDB <--- only if (4) is set. select realm created in (4) |
| 339 | }}} |
| 340 | |
| 341 | 6. Modify `/fullpathto/mytracproject/conf/trac.ini` |
299 | 342 | |
300 | 343 | {{{ |
… |
… |
|
305 | 348 | }}} |
306 | 349 | |
307 | | 7) Restart LiteSpeed, “lswsctrl restart”, and access your new Trac project at: |
| 350 | 7. Restart !LiteSpeed, “lswsctrl restart”, and access your new Trac project at: |
308 | 351 | |
309 | 352 | {{{ |
… |
… |
|
311 | 354 | }}} |
312 | 355 | |
| 356 | == Simple Nginx Configuration == |
| 357 | |
| 358 | 1. Nginx configuration snippet - confirmed to work on 0.6.32 |
| 359 | {{{ |
| 360 | server { |
| 361 | listen 10.9.8.7:443; |
| 362 | server_name trac.example; |
| 363 | |
| 364 | ssl on; |
| 365 | ssl_certificate /etc/ssl/trac.example.crt; |
| 366 | ssl_certificate_key /etc/ssl/trac.example.key; |
| 367 | |
| 368 | ssl_session_timeout 5m; |
| 369 | |
| 370 | ssl_protocols SSLv2 SSLv3 TLSv1; |
| 371 | ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP; |
| 372 | ssl_prefer_server_ciphers on; |
| 373 | |
| 374 | # (Or ``^/some/prefix/(.*)``. |
| 375 | if ($uri ~ ^/(.*)) { |
| 376 | set $path_info /$1; |
| 377 | } |
| 378 | |
| 379 | # You can copy this whole location to ``location [/some/prefix]/login`` |
| 380 | # and remove the auth entries below if you want Trac to enforce |
| 381 | # authorization where appropriate instead of needing to authenticate |
| 382 | # for accessing the whole site. |
| 383 | # (Or ``location /some/prefix``.) |
| 384 | location / { |
| 385 | auth_basic "trac realm"; |
| 386 | auth_basic_user_file /home/trac/htpasswd; |
| 387 | |
| 388 | # socket address |
| 389 | fastcgi_pass unix:/home/trac/run/instance.sock; |
| 390 | |
| 391 | # python - wsgi specific |
| 392 | fastcgi_param HTTPS on; |
| 393 | |
| 394 | ## WSGI REQUIRED VARIABLES |
| 395 | # WSGI application name - trac instance prefix. |
| 396 | # (Or ``fastcgi_param SCRIPT_NAME /some/prefix``.) |
| 397 | fastcgi_param SCRIPT_NAME ""; |
| 398 | fastcgi_param PATH_INFO $path_info; |
| 399 | |
| 400 | ## WSGI NEEDED VARIABLES - trac warns about them |
| 401 | fastcgi_param REQUEST_METHOD $request_method; |
| 402 | fastcgi_param SERVER_NAME $server_name; |
| 403 | fastcgi_param SERVER_PORT $server_port; |
| 404 | fastcgi_param SERVER_PROTOCOL $server_protocol; |
| 405 | fastcgi_param QUERY_STRING $query_string; |
| 406 | |
| 407 | # for authentication to work |
| 408 | fastcgi_param AUTH_USER $remote_user; |
| 409 | fastcgi_param REMOTE_USER $remote_user; |
| 410 | } |
| 411 | } |
| 412 | }}} |
| 413 | |
| 414 | 2. Modified trac.fcgi: |
| 415 | |
| 416 | {{{ |
| 417 | #!/usr/bin/env python |
| 418 | import os |
| 419 | sockaddr = '/home/trac/run/instance.sock' |
| 420 | os.environ['TRAC_ENV'] = '/home/trac/instance' |
| 421 | |
| 422 | try: |
| 423 | from trac.web.main import dispatch_request |
| 424 | import trac.web._fcgi |
| 425 | |
| 426 | fcgiserv = trac.web._fcgi.WSGIServer(dispatch_request, |
| 427 | bindAddress = sockaddr, umask = 7) |
| 428 | fcgiserv.run() |
| 429 | |
| 430 | except SystemExit: |
| 431 | raise |
| 432 | except Exception, e: |
| 433 | print 'Content-Type: text/plain\r\n\r\n', |
| 434 | print 'Oops...' |
| 435 | print |
| 436 | print 'Trac detected an internal error:' |
| 437 | print |
| 438 | print e |
| 439 | print |
| 440 | import traceback |
| 441 | import StringIO |
| 442 | tb = StringIO.StringIO() |
| 443 | traceback.print_exc(file=tb) |
| 444 | print tb.getvalue() |
| 445 | |
| 446 | }}} |
| 447 | |
| 448 | 3. reload nginx and launch trac.fcgi like that: |
| 449 | |
| 450 | {{{ |
| 451 | trac@trac.example ~ $ ./trac-standalone-fcgi.py |
| 452 | }}} |
| 453 | |
| 454 | The above assumes that: |
| 455 | * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory. |
| 456 | * `/home/trac/instance` contains a trac environment |
| 457 | * `/home/trac/htpasswd` contains authentication information |
| 458 | * `/home/trac/run` is owned by the same group the nginx runs under |
| 459 | * and if your system is Linux the `/home/trac/run` has setgid bit set (`chmod g+s run`) |
| 460 | * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every time |
| 461 | |
| 462 | Unfortunately nginx does not support variable expansion in fastcgi_pass directive. |
| 463 | Thus it is not possible to serve multiple trac instances from one server block. |
| 464 | |
| 465 | If you worry enough about security, run trac instances under separate users. |
| 466 | |
| 467 | Another way to run trac as a FCGI external application is offered in ticket #T6224 |
| 468 | |
313 | 469 | ---- |
314 | | See also TracCgi, TracModPython, TracInstall, TracGuide |
| 470 | See also: TracGuide, TracInstall, [wiki:TracModWSGI ModWSGI], [wiki:TracCgi CGI], [wiki:TracModPython ModPython], [trac:TracNginxRecipe TracNginxRecipe] |
|