Hello, it appears some elements of the ICPH webpage have keep-alive and some not. I want to ask how to achieve all are loaded with keep-alive? htaccess contains: thx
For the same, we'll have to enable the KeepAlive & to enable the KeepAlive, we just need to enable it in the config file of Apache and for any custom portal we can then have the required module in the .htaccess file using the following paramters in the .htaccess <ifModule mod_headers.c> Header set Connection keep-alive </ifModule> Hope it helps!
Im server owner and i have unmanaged service. If anyone can suggest what to add into httpd.conf, i thank you in advance.
KeepAlive is a server variable located in your configuration file. For Apache, its usually under the path /etc/httpd/conf/httpd.conf Applying KeepAlive settings on your server This should cover the most common cases. Login to your server via SSH and edit in the modification: 1 2 3 cd /etc/httpd/conf/httpd cp httpd.conf http.conf.bak nano httpd.conf Press ctrl+W and do a search for ‘KeepAlive’ to jump to it quickly. 1 2 KeepAlive ON KeepAliveTimeout X Replace “X” with the number you came up with in the process above.
I have KeppAlive On ; Keep-Alive Timeout 6 ; Max Keep-Alive Requests 100 but it still appears some local js and css elements still no keep alive on website (checked by webpagetest.org)