Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 15
- Log:
Attempt to update Typo to a Typo SVN HEAD release from around the
time the prototype installation was set up on the RISC OS Open Limited
web site. Timestamps place this at 04-Jul so a revision from 05-Jul or
earlier was pulled and copied over the 2.6.0 tarball stable code.
- Author:
- adh
- Date:
- Sat Jul 22 23:27:35 +0100 2006
- Size:
- 1549 Bytes
1 | # Default configuration file for the lighttpd web server |
2 | # Start using ./script/server lighttpd |
3 | |
4 | server.port = 3000 |
5 | |
6 | server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi" ) |
7 | server.error-handler-404 = "/dispatch.fcgi" |
8 | server.document-root = CWD + "/public/" |
9 | |
10 | server.errorlog = CWD + "/log/lighttpd.error.log" |
11 | accesslog.filename = CWD + "/log/lighttpd.access.log" |
12 | |
13 | url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" ) |
14 | |
15 | # Change *-procs to 2 if you need to use Upload Progress or other tasks that |
16 | # *need* to execute a second request while the first is still pending. |
17 | fastcgi.server = ( ".fcgi" => |
18 | ( "localhost" => |
19 | ( |
20 | "min-procs" => 2, |
21 | "max-procs" => 2, |
22 | "socket" => CWD + "/tmp/sockets/fcgi.socket", |
23 | "bin-path" => CWD + "/public/dispatch.fcgi", |
24 | "bin-environment" => ( "RAILS_ENV" => "development" ) |
25 | ) |
26 | ) |
27 | ) |
28 | |
29 | mimetype.assign = ( |
30 | ".css" => "text/css", |
31 | ".gif" => "image/gif", |
32 | ".htm" => "text/html", |
33 | ".html" => "text/html", |
34 | ".jpeg" => "image/jpeg", |
35 | ".jpg" => "image/jpeg", |
36 | ".js" => "text/javascript", |
37 | ".png" => "image/png", |
38 | ".swf" => "application/x-shockwave-flash", |
39 | ".txt" => "text/plain" |
40 | ) |
41 | |
42 | # Making sure file uploads above 64k always work when using IE or Safari |
43 | # For more information, see http://trac.lighttpd.net/trac/ticket/360 |
44 | $HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" { |
45 | server.max-keep-alive-requests = 0 |
46 | } |