• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Resolved Connection keep-alive

DieterWerner

Regular Pleskian
I added
Code:
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
into the Vhost.conf but it took no effect.

So what should I do?

I use Centos 7.
 
My question doesn't concern the content of .htaccess
I would like to enable KeepAlive via httpd.conf or vhost.conf
 
Last edited:
As long as KeepAlive On ist not a part of the httpd.confi - it's useless to add the settings into the ngingx config.
 
If I'm not mistaken, simply adding the header to "keep-alive" won't do anything unless the server has the capability turned on in the settings file.
(ie, for Apache the setting is "KeepAlive on" in the server settings)
 
Hi DieterWerner,


... if you think this way, could you pls. check, WHO answers your first request, when you connect to your webserver? Is it NGINX, or is it Apache?

Example URL to check your header: => HTTP Header Check | HackerTarget.com

Everything is OK now:
HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Tue, 09 May 2017 10:45:47 GMT
Content-Type: text/html
Content-Length: 178
Connection: keep-alive
Location: http://MyDomain/

Server: nginx
Date: Tue, 09 May 2017 10:45:47 GMT
Content-Type: text/html; charset=iso-8859-1
Connection: keep-alive
 
Back
Top