trafficserver and wordpress not work

2016-09-15 Thread paulz
Hi,
trafficserver and wordpress not work?



Re: trafficserver and wordpress not work

2016-09-15 Thread Reindl Harald


Am 15.09.2016 um 22:23 schrieb pa...@ula.ve:

trafficserver and wordpress not work?


a reverse proxy by definition is application agnostic
you need to describe your probkem and config


Does ATS support URLs longer than 8K?

2016-09-15 Thread Adam McCullough
Hello!

I'm running into a problem with ATS. I'm using it as a proxy to an internal
endpoint, which regularly takes very long URLs -- 3KiB URLs are normal,
I've seen as long as 11KiB.

ATS doesn't seem to handle this terribly well. I've done some experimenting
and found that ATS tends to respond with a HTTP 400 Invalid Client Request
when given a request where the URL + Header/Cookie data goes above about 8
KiB.

This does not overly surprise me, since a URL that's longer than 8K is, in
most circumstances, absurd. However, it's a necessairy feature for the app
I'm tasked with deploying.

So, I have two questions. 1 - is my suspicion that I'm overflowing some 8K
sized buffer somewhere correct, and 2 - if so, is there an easy way to grow
this buffer to allow for very long requests?

I've found both proxy.config.http.request_header_max_size and
proxy.config.http.response_header_max_size and set them to 524288 (512 *
1024) as an attempt to troubleshoot, but this did not seem to help.

Many thanks,

Adam


Re: Does ATS support URLs longer than 8K?

2016-09-15 Thread Miles Libbey
I know this isn't particularly helpful, but the other day I tested a
Cookie Length of >65KB, and it worked on our system.  I just tried a
url like
curl -x localhost:80 "http://example.com/?foo=`perl -e 'print "x" for
1..5'`" H "Cookie: x=`perl -e 'print "x" for 1..5'`"
which was accepted.

$ traffic_ctl config match header_max_size
proxy.config.http.request_header_max_size: 131072
proxy.config.http.response_header_max_size: 131072

Oh.  When I made the request too big, I got
HTTP/1.0 400 Invalid HTTP Request
I don't have a origin that gives a gigantic response though to test.

Wonder if there is a way to isolate the origin server from ATS?

miles

On Thu, Sep 15, 2016 at 5:57 PM, Adam McCullough  wrote:
> Hello!
>
> I'm running into a problem with ATS. I'm using it as a proxy to an internal
> endpoint, which regularly takes very long URLs -- 3KiB URLs are normal, I've
> seen as long as 11KiB.
>
> ATS doesn't seem to handle this terribly well. I've done some experimenting
> and found that ATS tends to respond with a HTTP 400 Invalid Client Request
> when given a request where the URL + Header/Cookie data goes above about 8
> KiB.
>
> This does not overly surprise me, since a URL that's longer than 8K is, in
> most circumstances, absurd. However, it's a necessairy feature for the app
> I'm tasked with deploying.
>
> So, I have two questions. 1 - is my suspicion that I'm overflowing some 8K
> sized buffer somewhere correct, and 2 - if so, is there an easy way to grow
> this buffer to allow for very long requests?
>
> I've found both proxy.config.http.request_header_max_size and
> proxy.config.http.response_header_max_size and set them to 524288 (512 *
> 1024) as an attempt to troubleshoot, but this did not seem to help.
>
> Many thanks,
>
> Adam