Re: [users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-07 Thread ryo takatsuki
Hi Jim, I applied the patch but it still failed for me. It now finds the proxy but it fails later on looking for a valid handler. proxy_fcgi does not recognize it because it does not start by fcgi: but unix:. I sent you the full log file directly in case it helps but I'm pasting here the related

Re: [users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-06 Thread Jim Jagielski
Try this patch: find-worker.patch Description: Binary data On Nov 5, 2013, at 2:02 PM, ryo takatsuki wrote: > Hi, > > A month ago I checked the new UDS (Unix Domain Sockets) support and it worked > properly (I need to tweak it a little bit for my needs). The syntax at that > point was: >

Re: [users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-06 Thread Jim Jagielski
Can you email the full logging? It looks like the ProxyPass isn't creating the worker correctly. You can email direct to me if you like (and if it is sizable). On Nov 5, 2013, at 2:02 PM, ryo takatsuki wrote: > Hi, > > A month ago I checked the new UDS (Unix Domain Sockets) support and it work

Re: [users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-06 Thread Jim Jagielski
It looks like its using the generic reverse proxy worker... I'll take a look. On Nov 5, 2013, at 2:02 PM, ryo takatsuki wrote: > Hi, > > A month ago I checked the new UDS (Unix Domain Sockets) support and it worked > properly (I need to tweak it a little bit for my needs). The syntax at that >

[users@httpd] Issues with UDS support for mod_proxy in trunk

2013-11-05 Thread ryo takatsuki
Hi, A month ago I checked the new UDS (Unix Domain Sockets) support and it worked properly (I need to tweak it a little bit for my needs). The syntax at that point was: ProxyPassMatch ^(.*\.php(/.*)?)$ fcgi://uds=%2ftmp%2fsomedir%2fphp%2fvar%2frun%2fsocket.sock/$1 Today I checked the latest chan