Re: Making HTTP requests

2009-06-04 Thread Michael Spiegle
Kevac Marko wrote: I am using CURL. On Mon, Jun 1, 2009 at 9:01 PM, Michael Spiegle m...@nauticaltech.com wrote: Is there a proper/defined way to use mod_proxy for this, or should I just move forward with cURL? Thanks. After looking at libcurl's API, I'm going to give it a shot. Mike

Re: mod_proxy. mod_proxy_balancer and failovers

2009-06-04 Thread Kevac Marko
So, do we have any conclusion? Should I make modifications and post patch? -- Marko Kevac

Re: Some ramblings on httpd config

2009-06-04 Thread Dan Poirier
Rich Bowen rbo...@rcbowen.com writes: The If directive, along with better documentation, would solve 50% of what people use mod_rewrite for. A less painful way to configure dynamic virtual hosts would solve another 15%. And a healthy dose of education about all the gross misconceptions called

Re: Some ramblings on httpd config

2009-06-04 Thread Dan Poirier
Niklas Edmundsson ni...@acc.umu.se writes: Those who can't grasp lua probably couldn't grasp our current config scheme either. I strongly disagree. There's a huge gulf between being able to describe a configuration with a few directives, and having to write a program to implement mod_rewrite

Re: Some ramblings on httpd config

2009-06-04 Thread Akins, Brian
On 6/3/09 7:50 PM, Plüm, Rüdiger, VF-Group ruediger.pl...@vodafone.com wrote: 1. There are many and large and complex configurations out in the world. Which is exactly why I want/need a better way to do them. I'm currently using a template system to generate them. However I wind up with

Re: Some ramblings on httpd config

2009-06-04 Thread Graham Dumpleton
2009/6/4 Akins, Brian brian.ak...@turner.com: On 6/3/09 7:50 PM, Plüm, Rüdiger, VF-Group ruediger.pl...@vodafone.com wrote: 1. There are many and large and complex configurations out in the world. Which is exactly why I want/need a better way to do them.  I'm currently using a template

Re: Some ramblings on httpd config

2009-06-04 Thread Jorge Schrauwen
On Thu, Jun 4, 2009 at 1:55 PM, Akins, Brian brian.ak...@turner.com wrote: On 6/3/09 7:50 PM, Plüm, Rüdiger, VF-Group ruediger.pl...@vodafone.com wrote: 1. There are many and large and complex configurations out in the world. Which is exactly why I want/need a better way to do them.  I'm

Re: Some ramblings on httpd config

2009-06-04 Thread Akins, Brian
On 6/4/09 7:51 AM, Dan Poirier poir...@pobox.com wrote: and having to write a program to implement mod_rewrite or a virtual host yourself. Something like this would be trivial to do: if prefix_match(r.uri, /foo/) then return do_redirect(r, http://somewhere.else/;) end Okay, not a

Re: Some ramblings on httpd config

2009-06-04 Thread Akins, Brian
On 6/4/09 8:14 AM, Jorge Schrauwen jorge.schrau...@gmail.com wrote: Like Graham mentioned mod_macro can be of some use here. however since I'm looping in perl I may as well push the 4 lines needed to httpd instead of a one line macro replacemen. Okay, I'm not explaining my self well. I'm

Re: mod_proxy. mod_proxy_balancer and failovers

2009-06-04 Thread Jim Jagielski
On Jun 4, 2009, at 4:16 AM, Kevac Marko wrote: So, do we have any conclusion? Should I make modifications and post patch? Sure... no guarantees that they'll be applied, but it would be useful to see what you have in mind.

Re: Some ramblings on httpd config

2009-06-04 Thread Rich Bowen
Absolutely, but since it doesn't come with the product, most folks are never going to see it. Can we get Fabien to contribute it? On Jun 4, 2009, at 07:58, Graham Dumpleton wrote: 1. There are many and large and complex configurations out in the world. Which is exactly why I want/need a

Re: mod_proxy. mod_proxy_balancer and failovers

2009-06-04 Thread Kevac Marko
On Thu, Jun 4, 2009 at 4:32 PM, Jim Jagielski j...@jagunet.com wrote: Sure... no guarantees that they'll be applied, but it would be useful to see what you have in mind. Huh. I thought it would be easy as fixing just mod_proxy.c, but... It occurred that mod_proxy_http thinks that, for example,

Re: add OS to BugZilla

2009-06-04 Thread Rainer Jung
Done by Mark (Thomas) independent of 'Product' category. On 03.06.2009 17:24, Guenter Knauf wrote: Hi, we support NetWare already from 1.3.x days, and I think it would make sense to add 'NetWare' to the OS dropdown selector in BugZilla; can perhaps someone with the needed karma add this

Re: Some ramblings on httpd config

2009-06-04 Thread Graham Dumpleton
2009/6/4 Akins, Brian brian.ak...@turner.com: On 6/4/09 8:14 AM, Jorge Schrauwen jorge.schrau...@gmail.com wrote: Like Graham mentioned mod_macro can be of some use here. however since I'm looping in  perl I may as well push the 4 lines needed to httpd instead of a one line macro replacemen.

Re: Some ramblings on httpd config

2009-06-04 Thread Graham Leggett
Graham Dumpleton wrote: Since you are talking here about runtime decisions based on a specific request, rather than auto generation of the static configuration in once off phase, it almost sounds like all you need is a way of having the lua code which would be associated with a specific