Author Topic: Apache keepalive  (Read 9272 times)

0 Members and 1 Guest are viewing this topic.

Offline
*****
Apache keepalive
« on: March 03, 2016, 02:38:34 AM »
Im using prefork mpm

how can i enable keepalive?

Offline
*****
Re: Apache keepalive
« Reply #1 on: March 22, 2016, 02:22:57 PM »
Hello.

Have you maybe tried just add it Apache's config?
You can ask me to solve any problem with your server for some money in pm  ;)
Services Monitoring & RBL Monitoring
http://centos-webpanel.com/services-monitor
Join our Development Team and get paid !
http://centos-webpanel.com/develope-modules-for-cwp

Installation Instructions
http://centos-webpanel.com/installation-instructions
Get Fast Support Here
http://centos-webpanel.com/support-services

Offline
*****
Re: Apache keepalive
« Reply #2 on: March 22, 2016, 04:25:43 PM »
ya i resolved it by adding/editing this lines in apache config and in virtual host :

apache config :
Code: [Select]
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 100
virtual host config :
Code: [Select]
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>