• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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