Varnish cache is a super caching application which will cache your website pages and images in RAM and deliver it directly to the visitors, thereby speeding up the web site.The major drawback of Varnish Cache is that you will not be able to run secure pages with Varnish Cache … [Read more...] about How to configure SSL to work with Varnish Cache
Nginx
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home2/cptech/public_html/wp-content/themes/genesis/lib/functions/image.php on line 116
How to install PHP7 using Yum
This guide will help you to upgrade php in your server from php 5.x to 7.0. The new php7 is quite fast, and have very less memory footprint compared to php5.x … [Read more...] about How to install PHP7 using Yum
Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home2/cptech/public_html/wp-content/themes/genesis/lib/functions/image.php on line 116
Add a training slash for nginx websites
In Nginx web servers, most of us might have came across a situation where our sub folder access wont work some times and if we add a trailing slash , it start to work ie http://domain.com/sub-folder wont work when http://domain.com/sub-folder/ works.Fix add a redirect rule to auto insert the trailing slash - here is the code for that rewrite ^/([^.]*[^/])$ $1/ … [Read more...] about Add a training slash for nginx websites