M3 Prestitichiari
New Pleskian
Goodmorning to all,
today i've got a problem on my Linux server with Plesk Onyx installed, version 17.5.3 #18: i've tried to check if keep-alive for https connection is working correctly but it seems it doesn't... If i check it with Google Chrome i can't see the connection header, so i tried with some benchmark site like pingdom e gtmetrix, both showing that all files are loaded with keep-alive but CSS files keep doing the handshake for SSL connection... anyone can help me? These are my settings on apache and nginx.
I've also had a problem with the X-Powered-By header... i had two of this headers showing on chrome inspector, so i updated my settings to hide them but the "X-Powered-By: Plesklin" disappeared while "x-powered-by: Plesklink" did not. I've also set php expose to the right setting... Any Suggestions?
Thank you in advance for your help,
Domenico
today i've got a problem on my Linux server with Plesk Onyx installed, version 17.5.3 #18: i've tried to check if keep-alive for https connection is working correctly but it seems it doesn't... If i check it with Google Chrome i can't see the connection header, so i tried with some benchmark site like pingdom e gtmetrix, both showing that all files are loaded with keep-alive but CSS files keep doing the handshake for SSL connection... anyone can help me? These are my settings on apache and nginx.
Code:
APACHE HTTP
--------------------
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
ServerSignature Off
APACHE HTTPS
---------------------
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
ServerSignature Off
NGINX
----------
etag off;
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
gzip_vary on;
proxy_http_version 1.1;
proxy_set_header Connection "";
keepalive_requests 100;
keepalive_timeout 15s;
proxy_hide_header X-Powered-By;
I've also had a problem with the X-Powered-By header... i had two of this headers showing on chrome inspector, so i updated my settings to hide them but the "X-Powered-By: Plesklin" disappeared while "x-powered-by: Plesklink" did not. I've also set php expose to the right setting... Any Suggestions?
Thank you in advance for your help,
Domenico