Tonimaloni Posted June 8, 2020 Share Posted June 8, 2020 Hola! nuestra web de Ortocanis.com está cargando muy lenta. En los análisis de google speed insights nos dice que hay que reducir el "initial server response time". He escrito varias veces al servidor pero la respuesta siempre ha sido la misma, alegan ser un tema de la aplicación y no hacen nada. (Hosteurope, no recomendable). Instalamos un módulo para la caché (Page cache ultimate) y un Lazyload y algo mejoró pero estamos lejos de tener un buen rendimiento. Alguien sabe cómo reducir el tiempo de respuesta del servidor? Link to comment Share on other sites More sharing options...
gusman126 Posted June 8, 2020 Share Posted June 8, 2020 Si tienes plesk y Gninx puedes pedir que te pongan esta configuración NO ME HAGO RESPONSABLE DE ERRORES Y FALLOS Directivas adicionales para HTTP KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 100 FcgidBusyTimeout 600 FcgidIOTimeout 250 MaxRequestsPerProcess 2500 IPCCommTimeout 6400 IdleTimeout 6400 Servir archivos estáticos directamente mediante nginx Directivas adicionales de nginx gzip on; gzip_disable "MSIE [1-6]\\.(?!.*SV1)"; gzip_proxied any; gzip_comp_level 6; gzip_buffers 8 16k; gzip_types text/plain text/css application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon image/bmp image/jpg image/webp image/png image/svg+xml; gzip_vary on; location ~* \.(?:manifest|appcache|html?|xml|json)$ { expires -1; # access_log logs/static.log; # I don't usually include a static log } # Feed location ~* \.(?:rss|atom)$ { expires 1h; add_header Cache-Control "public"; } # Media: images, icons, video, audio, HTC location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ { expires 1M; access_log off; add_header Cache-Control "public"; } # CSS and Javascript location ~* \.(?:css|js)$ { expires 1M; access_log off; add_header Cache-Control "public"; } sendfile on; Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now