Hi, I am unable to set the proxy worker properties (connection pool size etc.) . If I remove my all Proxy & Rewrite directives, I still see this in logs:
proxy: initialized worker 0 in child 29085 for (*) min=0 max=7 smax=7 How this gets initialized? ________________________________ From: alin vasile <alinachegal...@yahoo.com> To: users@httpd.apache.org Sent: Sun, April 18, 2010 8:38:03 PM Subject: Re: [us...@httpd] Reverse proxy question The key here is that I want to rewrite some URL's using a remote proxy and I need to set the proxy properties in a common place (not repeating them at every RewriteRule). I saw that if I remove the "ProxyPass" directives the warnings dissapear. But are the ProxySet properties used in this case? ________________________________ From: alin vasile <alinachegal...@yahoo.com> To: users@httpd.apache.org Sent: Sat, April 17, 2010 5:44:43 PM Subject: [us...@httpd] Reverse proxy question Hi, I try to setup a reverse proxy with httpd 2.2.15: ProxyPass /112 http:/mywebserver/112 ProxyPassReverse /112 http:/mywebserver/112 and I want to rewrite some requests through it: RewriteCond %{REQUEST_URI} /112 RewriteRule /112/(.*) http://mywebserver/112/$1 [P,L] Also I would like to set some properties for this proxy: <Proxy http:/mywebserver/112> ProxySet keepalive=On </Proxy> In this moment if I start httpd I'll get the warning: worker http:/mywebserver/112 already used by another worker. What I am doing wrong? Thanks