[users@httpd] Rate limiting

2013-09-02 Thread Akash Jain
How can i rate limit no. Of requests per ip for a particular url to prevent DoS?

Re: [users@httpd] How to Proxy Requests

2013-08-25 Thread Akash Jain
We don't use htaccess file. Will rewriterules work for POST requests? On 25 Aug 2013 16:00, "Aarti Sawant" wrote: You can use htaccess to serve this purpose, use Rewrite rule for redirecting from one url to another url. Thanks, Aarti Sawant On Sun, Aug 25, 2013 at 10:47

[users@httpd] How to Proxy Requests

2013-08-24 Thread Akash Jain
Hi, Users of my website hit a AJAX POST call for validation of User ID. The URL formed is http://dummy.com//handler/validateId?userid= ** RandomNumber is any random number based on the instance the request gets hit. Now, at webserver level, I want that request to be processed by another URL : h

Re: [users@httpd] GZIP DEFLATE and HTTPD

2013-08-08 Thread Akash Jain
Thanks a lot Ben. That helped. On Thu, Aug 8, 2013 at 3:12 AM, Ben Reser wrote: > On Wed, Aug 7, 2013 at 1:59 PM, Akash Jain > wrote: > > Per Akamai Guy, Vary shows akamai that content can vary so akamai is not > > caching, and this leading akamai to make requests to our web

Re: [users@httpd] GZIP DEFLATE and HTTPD

2013-08-07 Thread Akash Jain
Per Akamai Guy, Vary shows akamai that content can vary so akamai is not caching, and this leading akamai to make requests to our webversion ... We mostly just use JS and CSS to be served from akamai .. On Thu, Aug 8, 2013 at 2:09 AM, Nick Kew wrote: > > On 7 Aug 2013, at 21:02, Akas

Re: [users@httpd] GZIP DEFLATE and HTTPD

2013-08-07 Thread Akash Jain
But all modern browsers support it, right ? Are there any downsides for not using Vary:Accept Encoding with mod_deflate? On Thu, Aug 8, 2013 at 1:23 AM, Eric Covener wrote: > On Wed, Aug 7, 2013 at 3:48 PM, Akash Jain > wrote: > > We had a weird issue of Akamai not caching static

[users@httpd] GZIP DEFLATE and HTTPD

2013-08-07 Thread Akash Jain
We had a weird issue of Akamai not caching static content like JS, CSS etc. On debugging, they reported that we are sending "Vary:Accept Encoding" is causing issue. But I think that mod_deflate automatically sends that (for proxies) However, I have explicitly unset that header so that Akamai can c

Re: [users@httpd] How to run httpd server on random port on every bootup

2013-03-26 Thread Akash Jain
@Mandar : Like Pete said, can you shed some light on the use case ? On Tue, Mar 26, 2013 at 5:54 PM, Mandar Nandale wrote: > Thanks Eric setting up environment variable worked for me > > > > > On Tue, Mar 26, 2013 at 5:33 PM, Eric Covener wrote: > >> On Tue, Mar 26, 2013 at 7:51 AM, Mandar Nanda

[users@httpd] Query on SSL Handshake

2013-01-15 Thread Akash Jain
Hi, Is it possible to know if Apache is doing SSL handshake? We have moved certs to netscalar ... but we want to check if SSL handshake is still done by apache provided Netscalar still uses the same Vhost as previously. I checked using Custom logging in both and , butstill not sure if SS

Re: [users@httpd] question with apache rewriterules (working using crome, but not FF)

2013-01-12 Thread Akash Jain
what does the rewrite logs say ? On Sat, Jan 12, 2013 at 8:49 PM, Robert Rottermann wrote: > Hi there, > we are about to go live with a site we reimplemented. > The site structure is different between the two sites. > > What I now would like to do is that old content is fetched from the old > s

Re: [users@httpd] Re: Compiling Apache httpd 2.4 with FIPS capable OpenSSL on Solaris

2013-01-11 Thread Akash Jain
Thanks Jerry for the solution. On Fri, Jan 11, 2013 at 2:35 AM, Jerry Blasdel wrote: > My issue has been resolved. In my case I was statically linking the > OpenSSL so I needed to do the following before calling httpd configure: > > export CC=fipsld > export FIPSLD_CC=gcc > > > > This is a PRIV

[users@httpd] Client Side negotiation

2013-01-11 Thread Akash Jain
Hi All, I have -MultiViews set and SSLInsecureNegotation off ( in ifmodule of mod_ssl.c) in Apache. But still vulnerability report says I am vulnerable to client side negotiation. Any pointers ? The same configuration works on our TEST environments. THe only difference is the build release vers

Re: [users@httpd] mod_rewrite Question

2012-12-28 Thread Akash Jain
RewriteRule ^/cmdbnew/(.*)/(.*)$ http://ckcftpa2/cmdbnew/assetdetail.php?srv=$1&cust=$2 [R,L] If you have any L rule preceeding it, then it may be overwriting it. Can you try putting the rule i gave you above , and see what the rewrite logs say. On Sat, Dec 29, 2012 at 10:02 AM, Martin, Stanley