Mercurial > p > roundup > code
comparison doc/FAQ.txt @ 2054:f804d466ed91
*** empty log message ***
| author | Cameron Blackwood <drkorg@users.sourceforge.net> |
|---|---|
| date | Thu, 26 Feb 2004 04:20:45 +0000 |
| parents | 4c7f5d925b12 |
| children | d9a6918aafd5 f203541b1116 |
comparison
equal
deleted
inserted
replaced
| 2053:bd79245fc30c | 2054:f804d466ed91 |
|---|---|
| 1 =========== | 1 =========== |
| 2 Roundup FAQ | 2 Roundup FAQ |
| 3 =========== | 3 =========== |
| 4 | 4 |
| 5 :Version: $Revision: 1.15 $ | 5 :Version: $Revision: 1.16 $ |
| 6 | 6 |
| 7 .. contents:: | 7 .. contents:: |
| 8 | 8 |
| 9 | 9 |
| 10 Installation | 10 Installation |
| 58 | 58 |
| 59 RewriteEngine on | 59 RewriteEngine on |
| 60 | 60 |
| 61 # General Roundup | 61 # General Roundup |
| 62 RewriteRule ^/Roundup$ Roundup/ [R] | 62 RewriteRule ^/Roundup$ Roundup/ [R] |
| 63 RewriteRule ^/Roundup/(.*) http://foohost.com:8888/$1 [P] | 63 RewriteRule ^/Roundup/(.*)$ http://foohost.com:8888/$1 [P,L] |
| 64 | |
| 65 # Redirect to Foo Issues | |
| 66 RewriteRule ^/Roundup/foo_issues(.*) FooIssues$1 [R] | |
| 67 | 64 |
| 68 # Handle Foo Issues | 65 # Handle Foo Issues |
| 69 RewriteRule ^/FooIssues$ FooIssues/ [R] | 66 RewriteRule ^/FooIssues$ FooIssues/ [R] |
| 70 RewriteRule ^/FooIssues/(.*) http://foohost.com:8888/foo_issues/$1 [P] | 67 RewriteRule ^/FooIssues/(.*)$ http://foohost.com:8888/foo_issues/$1 [P,L] |
| 71 | 68 |
| 72 </IfModule> | 69 </IfModule> |
| 73 | 70 |
| 74 Then restart Apache. Now Apache will proxy the request on to the | 71 Then restart Apache. Now Apache will proxy the request on to the |
| 75 roundup-server. | 72 roundup-server. |
