Changeset 2376
- Timestamp:
- 11/11/08 17:24:06 (2 months ago)
- Files:
-
- cherokee/trunk/doc/dev.txt (modified) (1 diff)
- cherokee/trunk/doc/dev_issues.txt (modified) (2 diffs)
- cherokee/trunk/doc/index.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/doc/dev.txt
r2229 r2376 3 3 . link:dev_debug.html[Debugging]: Resources available to debug Cherokee. 4 4 . link:dev_cherokee.conf.html[cherokee.conf]: Internal configuration specs. 5 . link:dev_issues.html[Open issues]: Current development issues .5 . link:dev_issues.html[Open issues]: Current development issues (proxy, wizards, extra ruletypes...) cherokee/trunk/doc/dev_issues.txt
r2354 r2376 41 41 is under heavy development. The Cherokee-admin module is not yet 42 42 written, so you'll have to do what no final user is meant to do. It's 43 easy to configure though, so don't worry. Here you have a basic44 configuration example: 43 easy to configure though, so don't worry. It is working nicely, and 44 since r2373 it supports URL rewriting. 45 45 46 ----- 46 Here you have a basic configuration example: 47 48 ---- 47 49 server!port = 1234 48 50 51 # The proxy configuration 49 52 vserver!1!nick = default 50 53 vserver!1!document_root = /tmp 51 54 vserver!1!rule!1!match = default 52 55 vserver!1!rule!1!handler = proxy 56 vserver!1!rule!1!handler!header_hide!1 = server 53 57 vserver!1!rule!1!handler!balancer = round_robin 54 58 vserver!1!rule!1!handler!balancer!source!1 = 1 55 59 60 # URL rewrite 61 vserver!1!rule!1!handler!rewrite_request!1!regex = ^/(.+).png$ 62 vserver!1!rule!1!handler!rewrite_request!1!substring = /$1.jpg 63 vserver!1!rule!1!handler!rewrite_request!2!regex = ^/test/(.+)$ 64 vserver!1!rule!1!handler!rewrite_request!2!substring = /test.php?$1 65 56 66 source!1!type = host 57 67 source!1!host = localhost:9090 58 ---- -68 ---- 59 69 60 70 … … 81 91 combine them with so much flexibility that dealing with it from the 82 92 GUI could get really messy. 83 cherokee/trunk/doc/index.txt
r2375 r2376 115 115 . link:dev_debug.html[Debugging]: Resources available to debug Cherokee. 116 116 . link:dev_cherokee.conf.html[cherokee.conf]: Internal configuration specs. 117 . link:dev_issues.html[Open issues]: Current development issues .117 . link:dev_issues.html[Open issues]: Current development issues (proxy, wizards, extra ruletypes...) 118 118 //// 119 119 . link:dev_api.html[API introduction]