Re: [users@httpd] Help: Apache crashed once Concurrent Users reached 150

2019-12-09 Thread Anil Kumar P
rlier to move to event mpm instead of prefork. >> >> Something mode detailed like: >> StartServers 1 >> ServerLimit 7 >> MinSpareThreads 250 >> MaxSpareThreads 2500 >> ThreadsPerChild 500 >> ThreadLimit 500 >> MaxRequestWorkers 3500 >>

Re: [users@httpd] Help: Apache crashed once Concurrent Users reached 150

2019-12-05 Thread Anil Kumar P
A quick look at your config tells me you are using prefork mpm instead you should be using event mpm which provides better concurrent access boost. Please look at the apache mpm documentation for more details. Thanks, Anil > On Dec 5, 2019, at 2:13 AM, Jayaram Ponnusamy > wrote: > >  >

Re: [users@httpd] Page display on default html page

2019-11-18 Thread Anil Kumar P
You can use SSI for this. Enable Includes with below: Options +Includes File types to be parsed for SSI directives with below: AddType text/html .html AddOutputFilter INCLUDES .html Finally use below SSI include on index page: Thanks, Anil > On Nov 18, 2019, at 1:27 PM, Jos Chrispijn wrote:

Re: [users@httpd] Apache 2.4.41 checking env variable error

2019-11-05 Thread Anil Kumar P
Sure, I’am glad it helped. Thanks, Anil > On Nov 5, 2019, at 4:47 AM, Salim Abdul -X (salimabd - HCL TECHNOLOGIES > LIMITED at Cisco) wrote: > >  > Hi Anil, > > This method is working fine. > > Thank you very much for your reply. > > Thanks, > Sal

Re: [users@httpd] Apache 2.4.41 checking env variable error

2019-11-03 Thread Anil Kumar P
You can try like below, SetEnvIf %{XYZ} "SUCCESS" xyz_env Require env xyz_env Thanks, Anil >> On Nov 3, 2019, at 11:24 AM, Salim Abdul -X (salimabd - HCL TECHNOLOGIES >> LIMITED at Cisco) wrote: > %{XYZ} == "SUCCESS"

Re: [users@httpd] Optimal way to trigger logging if certain URL is accessed

2019-10-23 Thread Anil Kumar P
Nope only on server and vhost levels. Thanks, Anil > On Oct 23, 2019, at 11:52 AM, Colin 't Hart wrote: > > Are logging directives allowed inside a Location or LocationMatch directive? > > /Colin > > Sent from my iPhone > >> On 23 Oct 2019, at 18:41, Martin T wrote: >> >> Hi, >> >> I

Re: [users@httpd] Is it possible to have in Apache 2.4 VirtualHosts, each with its own SSLProtocol ?

2019-10-17 Thread Anil Kumar P
As suggested in the wiki, did you set below during your tests. Let us know your findings. # Listen for virtual host requests on all IP addresses NameVirtualHost *:443 # Go ahead and accept connections for these vhosts # from non-SNI clients SSLStrictSNIVHostCheck off Thanks, Anil > On Oct

Re: [users@httpd] Is it possible to have in Apache 2.4 VirtualHosts, each with its own SSLProtocol ?

2019-10-16 Thread Anil Kumar P
Is the client sending hostname header with the correct host, if not by default first vhost will be served. Thanks, Anil > On Oct 16, 2019, at 7:52 AM, Marian Ion wrote: > >> On 16/10/2019 12:44, Martin Drescher wrote: >> So I would suggest, putting the 1.3 only server as the first in your

Re: [users@httpd] Proxy to Proxy to web servers

2019-10-07 Thread Anil Kumar P
I suggest If possible try to serve the files from second proxy to see if it helps Thanks, Anil > On Oct 7, 2019, at 7:15 PM, Ellis, Merphis > wrote: > > The style sheet is on the backend web servers > > From: Anil Kumar P > Sent: Monday, October 07, 201

Re: [users@httpd] Proxy to Proxy to web servers

2019-10-07 Thread Anil Kumar P
Where did you keep the style sheets are they on second proxy or serving from the backend? Thanks, Anil > On Oct 7, 2019, at 1:04 PM, Ellis, Merphis > wrote: > > Good afternoon > > I am looking to get a Proxy to Proxy to Web Server setup > There is a firewall between the two proxies. For