Re: [users@httpd] Re: Reg : Limiting http connections at Apache 2.4.25

2017-04-17 Thread Luca Toscano
Not sure what is the status of mod_qos (third party module), but you might want to give it a try and see if it fits your needs! http://mod-qos.sourceforge.net/#requestlevelcontrol Luca 2017-04-17 3:08 GMT+02:00 Velmurugan Dhakshnamoorthy : > Dear All, > Any specific setup to cut and disallow th

Re: [users@httpd] Reg: Custom error message at Apache 2.4.25

2017-04-17 Thread Velmurugan Dhakshnamoorthy
Thanks again for your valuable inputs, I am actually restricting number of HTTP sessions at weblogic layer, beyond the specified limit, weblogic throws 500 error message, which is not very useful to users, I want only the 500 error page to be re-written by Apache proxy with simple message (ex:

Re: [users@httpd] Reg: Custom error message at Apache 2.4.25

2017-04-17 Thread Luca Toscano
Hi! As Nick mentioned there are a couple of options: 1) https://httpd.apache.org/docs/2.4/mod/mod_substitute.html or https://httpd.apache.org/docs/current/mod/mod_proxy_html.html in case you want to replace some parts of the response coming from the backend with your content. 2) Write your own c

[users@httpd] Causes httpd processes spiraling out of control with memory usage?

2017-04-17 Thread Rose, John B
Are there some common causes for a single httpd process to use inordinate amounts of RAM? I have read about one person having a loop in their mod_rewrite rules. If someone hit the particular URL, the offending Rewrite rule would cause memory consumption to go out of control Thanks

RE: [users@httpd] how to enable TLS v1.1 and TLS v1.2 alone in Apache 2.4.10 ?

2017-04-17 Thread Chunduru, Krishnachaithanya
Hi Eric, We used the openssl version is 1.0.1.515 while installing the Apache 2.4.10. Regards, Krishna -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Monday, April 17, 2017 6:18 PM To: users@httpd.apache.org Subject: Re: [users@httpd] how to enable TLS v1.1 and T

Re: [users@httpd] how to enable TLS v1.1 and TLS v1.2 alone in Apache 2.4.10 ?

2017-04-17 Thread Eric Covener
On Mon, Apr 17, 2017 at 6:59 AM, Chunduru, Krishnachaithanya wrote: > Is TLS v1.1 and v1.2 not supported in Apache 2.4.10 running with Openssl > 1.0.2.1000 ? your suggestions are highly appreciated as this is pending in > my account from long time. It probably depends what openssl build your htt

[users@httpd] how to enable TLS v1.1 and TLS v1.2 alone in Apache 2.4.10 ?

2017-04-17 Thread Chunduru, Krishnachaithanya
Hi All, Can someone please help me on the below error with the TLSv1.1 and TLSv1.2. -bash-4.2# /etc/rc.d/init.d/httpd stop Stopping Apache... AH00526: Syntax error on line 86 of /etc/httpd/extra/httpd-ssl.conf: SSLProtocol: Illegal protocol 'TLSv1.1' I have added the below line to my https-ssl.c

Re: [users@httpd] Reg: Custom error message at Apache 2.4.25

2017-04-17 Thread Velmurugan Dhakshnamoorthy
Hi Nick, yes exactly, I want the error message produced by back-end weblogic server to be re-written by Apache proxy and then display custom message to user. Regards, Vel On Apr 17, 2017 15:34, "Nick Kew" wrote: On Mon, 2017-04-17 at 09:04 +0800, Velmurugan Dhakshnamoorthy wrote: > >

[users@httpd] RE: Is openssl 1.0.2.1000 compatible with Apache 2.4.10.

2017-04-17 Thread Chunduru, Krishnachaithanya
Hi All, Can someone please help on this. Regards, Krishna From: Chunduru, Krishnachaithanya [mailto:krishnachaithanya.chund...@broadridge.com] Sent: Thursday, April 13, 2017 5:22 PM To: users@httpd.apache.org Subject: [users@httpd] Is openssl 1.0.2.1000 compatible with Apache 2.4.10. Hi All,

Re: [users@httpd] Reg: Custom error message at Apache 2.4.25

2017-04-17 Thread Nick Kew
On Mon, 2017-04-17 at 09:04 +0800, Velmurugan Dhakshnamoorthy wrote: > > Thanks Luca, I tried setting proxyerroroverride and error > document in virtual host, however, the 500 error produced by > content server is displayed as it is via Apache proxy. Any > furth