• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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