LiteMage Full Page Cache for LiteSpeed Web Server
The LiteMage Cache module provides an improved caching solution alternative to the PageCache module and Varnish Cache. The module will replace the Varnish option to the cache selector in the administrator interface for easy switching., (*1)
For most use cases, LiteMage Cache can improve your stores' performance right out of the box. LiteMage Cache also reduces the complexity of your stack; only the LiteMage Extension and LiteSpeed Web Server are required*. There is no need for an NGINX reverse proxy nor a Varnish Cache instance because the server can handle HTTPS and HTTP/2 requests and cache the pages all in one application., (*2)
LiteMage Cache operates by taking information from Magento and instructing the LiteSpeed server on how to cache the page. Once the server knows how to cache it, future requests to the same page will be served directly from the server. Requests will never hit the Magento backend until a change occurs., (*3)
* For clustered setups, LiteSpeed Load Balancer is needed., (*4)
LiteSpeed Web Server Enterprise Edition with Magento 2 set up and working., (*5)
The following steps assume that the Prerequisites mentioned above are met., (*6)
su user1
first.Set the store to developer mode:, (*7)
php bin/magento deploy:mode:set developer
In the Magento 2 root directory, run the following command to create the needed directories:, (*8)
mkdir -p app/code/Litespeed/Litemage
Move the contents from the GitHub directory to the newly created directory:, (*9)
mv /path/to/magento2-LiteSpeed_LiteMage-master/* app/code/Litespeed/Litemage/
Enable LiteMage 2 in magento:, (*10)
php bin/magento module:enable Litespeed_Litemage
Upgrade the Magento setup:, (*11)
php bin/magento setup:upgrade
Recompile code, (*12)
php bin/magento setup:di:compile
In the Magento 2 root directory's .htaccess file, add the following lines:, (*13)
<IfModule LiteSpeed> LiteMage on </IfModule>
Visit and refresh a page that should be cache enabled. Look for the LiteMage related response headers., (*14)
Example:, (*15)
X-LiteSpeed-Cache: litemage,hit
No further changes to your Magento 2 configurations should be necessary as LiteMage honors the same cacheable settings as varnish in the layout xml files., (*16)