[solved] FileEtag in LSWS 4.2.2

raymond

Active Member
#1
Just checked the release log and saw an update with this new feature:

  • FileEtag directives have been fully supported.

Does this mean we can now disable the Etags from the headers?
If yes, how can we disable it?
 
Last edited by a moderator:

raymond

Active Member
#3
Tried setting it at server level: lsws admin console->Server->Tuning->File ETag

Already unchecked the 3 boxes and is still showing ETag.

Did I miss anything else?
 

NiteWave

Administrator
#4
the server's setting can be overwritten by settings in .htaccess

any setting in .htaccess ?

to be sure, in your .htaccess, you can put for example
<Files "*.jpg">
FileETag None
</Files>

to remove etag.
 
Top