On Apache I use something similar to this
To avoid logging unnecessary data and reduce logsizes, usually static files.
I'm not using apache config, everything is configured on LSWS natively. Is there a similar command for LSWS?
Code:
SetEnvIf Request_URI ^.*\.(jpe?g|png|gif|js|css|ico) dontlog=yes
CustomLog ${docroot}/access_log combined expr=!reqenv('dontlog')=='yes'
I'm not using apache config, everything is configured on LSWS natively. Is there a similar command for LSWS?