OLS with Laravel Cache Module

#1
I can't find documentation to get this to work.

The module seems to be installed and working on Laravel's side but I can't seem to turn it on the only relevant header I get is:

x-litespeed-cache-control: max-age=604800,no-cache,esi=on

Here is what I have used from a working server for wordpress for the cache settings in the admin under virtual host -> modules -> cache
Code:
#          1
checkPrivateCache   1
checkPublicCache    1
maxCacheObjSize     10000000
maxStaleAge         200
qsCache             1
reqCookieCache      1
respCookieCache     1
ignoreReqCacheCtrl  1
ignoreRespCacheCtrl 0

enableCache         0
expireInSeconds     3600
enablePrivateCache  0
privateExpireInSeconds 3600
CacheIgnoreCacheControl Off
enableCache 1 doesn't do anything even tho it on the wordpress sites forces it to seemingly be always on.

There's these in the documentation for litespeed enterprise:
Code:
CacheEngine On
CacheLookup On
adding them to the cache setting does nothing, adding them to the .htaccess does nothing and I think is not supported for OLS to do it that way anyway.
I tried adding it to
Virtual Host -> Context -> Static -> Rewrite Rules

Right now the site is behind http auth but that makes no diff for wordpress sites.

At a loss for what to even try now, is it even supported?
 
Top