Re: Removing a request header in an access phase handler

2013-07-08 Thread Jan Algermissen
Hi Maxim, thanks, question inline: On 08.07.2013, at 19:59, Maxim Dounin wrote: > Hello! > > On Mon, Jul 08, 2013 at 06:45:33PM +0200, Jan Algermissen wrote: > >> Hi, >> >> I developing a handler for the access phase. In this handler I >> intend to remove a certain header. >> >> It seems t

Re: Dropped https client connection doesn't drop backend proxy_pass connection

2013-07-08 Thread Robert Mueller
> I have the same problem. I really need this feature. how is this going? > > >> Maxim Dounin: > > Valentin is already worked on this, and I believe he'll be able to > > provide a little bit more generic patch. > > does this mean in the future we can use epoll to detect the client > connection'

$request_header_length and $request_body_length?

2013-07-08 Thread est
Hello, I am trying to diagnose a weird 408 error problem on nginx. My theory is that the client might be using some kind of crack making the request body too short for Content-Length header, so nginx waits more data and ultimately fails at 60 seconds timeout. I tried to add few more log options,

Re: Disable open_file_cache for a specific location

2013-07-08 Thread Francis Daly
On Mon, Jul 08, 2013 at 03:42:31PM -0400, Peleke wrote: Hi there, > http://www.peleke.de/galerie/google/ > Nothing happens after a click on an album thumbnail. You will only see a > reload of the page and this added to the URL: > ?page_id=0&albid=5898003541337462625 (for example) which should sho

Re: Redirect www to no-www with variable (for multiple domains)?

2013-07-08 Thread lennart
Edho Arief Wrote: --- > On Sun, Jul 7, 2013 at 6:30 PM, lennart wrote: > > > > Is there a way to do this with regex or variables? I've ~15 domains > and it > > would be more convenient to have only one entry "to rule them all" > ;-) > > > > the

Re: Disable open_file_cache for a specific location

2013-07-08 Thread Peleke
Okay: This is the demo gallery of the gallery plugin I (want to) use: http://wp.oopstouch.com/?page_id=22 As you can see the first thumbnail pictures are thumbnails for different albums. When you click on one of them the album will be opened and then you can click on a thumbnail picture again to

Re: Removing a request header in an access phase handler

2013-07-08 Thread Maxim Dounin
Hello! On Mon, Jul 08, 2013 at 06:45:33PM +0200, Jan Algermissen wrote: > Hi, > > I developing a handler for the access phase. In this handler I > intend to remove a certain header. > > It seems that this is exceptionally hard to do - the only hint I > have is how it is done in the headers_mo

Re: Disable open_file_cache for a specific location

2013-07-08 Thread Francis Daly
On Sun, Jul 07, 2013 at 04:27:23PM -0400, Peleke wrote: Hi there, > Sorry but my last message was delayed, may be you didn't see it but the > problem is still not solved and it worked before with Apache. I would be > happy if you could help me, thanks! >From all of the words you have written so

Re: Perl/CGI on Nginx?

2013-07-08 Thread Francis Daly
On Mon, Jul 08, 2013 at 07:45:04PM +0300, BSD Kazakhstan wrote: Hi there, > I'm running Nginx on OpenBSD. PHP works fine, but how can I add support to > .pl and .cgi files for Nginx? nginx doesn't "do" php, pl, or cgi itself. You must set up an external server to handle them, and configure ngin

Removing a request header in an access phase handler

2013-07-08 Thread Jan Algermissen
Hi, I developing a handler for the access phase. In this handler I intend to remove a certain header. It seems that this is exceptionally hard to do - the only hint I have is how it is done in the headers_more module. However, I wonder, whether there is an easier way, given that it is not an

Perl/CGI on Nginx?

2013-07-08 Thread BSD Kazakhstan
Hello everyone. I'm running Nginx on OpenBSD. PHP works fine, but how can I add support to .pl and .cgi files for Nginx? Many thanks. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: spdy per location

2013-07-08 Thread Sajan Parikh
I guess if you cover all your bases when it comes to making sure your redirect where your users want to go, this might be one use of 'www'.  DOMAIN.COM can have SPDY and WWW.DOMAIN.COM can have it off. Then you just redirect each location to the other one,

Re: spdy per location

2013-07-08 Thread Sylvia
Hello. It works like this: 1. accept tcp connection 2. establish ssl session a) presenting first certificate b) optional: present 2nd certificate for desired virtual host via SNI extension 3. NPN (next protocol negotiation), enabling SPDY --- 4. requesting content i dont think there is

Re: spdy per location

2013-07-08 Thread António P . P . Almeida
spdy is a socket directive option. You cannot set it outside of that context AFAICT. What you can do is play with redirects between two hosts, one with spdy and one without. Since usually certs have at least one DNS name besides the CN you can do it with the same cert. Probably I haven't tested a

spdy per location

2013-07-08 Thread Richard Kearsley
Hi I'm trying to set up spdy so that I can choose weather or not to use it based on the server location that's accessed As I understand, the underlying protocol (http/https/spdy) is established first before any request can be sent (e.g. before we know which location it will match) I know this