Changeset 2376

Show
Ignore:
Timestamp:
11/11/08 17:24:06 (2 months ago)
Author:
taher
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/doc/dev.txt

    r2229 r2376  
    33  . link:dev_debug.html[Debugging]: Resources available to debug Cherokee. 
    44  . 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  
    4141is under heavy development.  The Cherokee-admin module is not yet 
    4242written, 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 basic 
    44 configuration example: 
     43easy to configure though, so don't worry. It is working nicely, and 
     44since r2373 it supports URL rewriting. 
    4545 
    46 ----- 
     46Here you have a basic configuration example: 
     47 
     48---- 
    4749server!port = 1234 
    4850 
     51# The proxy configuration 
    4952vserver!1!nick = default 
    5053vserver!1!document_root = /tmp 
    5154vserver!1!rule!1!match = default 
    5255vserver!1!rule!1!handler = proxy 
     56vserver!1!rule!1!handler!header_hide!1 = server 
    5357vserver!1!rule!1!handler!balancer = round_robin 
    5458vserver!1!rule!1!handler!balancer!source!1 = 1 
    5559 
     60# URL rewrite 
     61vserver!1!rule!1!handler!rewrite_request!1!regex = ^/(.+).png$ 
     62vserver!1!rule!1!handler!rewrite_request!1!substring = /$1.jpg 
     63vserver!1!rule!1!handler!rewrite_request!2!regex = ^/test/(.+)$ 
     64vserver!1!rule!1!handler!rewrite_request!2!substring = /test.php?$1 
     65 
    5666source!1!type = host 
    5767source!1!host = localhost:9090 
    58 ----- 
     68---- 
    5969 
    6070 
     
    8191combine them with so much flexibility that dealing with it from the 
    8292GUI could get really messy. 
    83   
  • cherokee/trunk/doc/index.txt

    r2375 r2376  
    115115  . link:dev_debug.html[Debugging]: Resources available to debug Cherokee. 
    116116  . 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...) 
    118118//// 
    119119  . link:dev_api.html[API introduction]