We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4961f6b commit ad0c954Copy full SHA for ad0c954
app-httpd.conf
@@ -39,10 +39,15 @@
39
Header set Cache-Control "no-cache"
40
</Directory>
41
42
- <Directory /opt/bitnami/apache/htdocs/gridadmin/static/>
+ <Directory /opt/bitnami/apache/htdocs/gridadmin/assets/>
43
# All files in this folder are public and have in their name
44
# the hash of their content, so cache them very aggressively
45
# as per recommended best practices
46
+ # NOTE: coincidentally, this moves us out of a nasty apache bug
47
+ # where etags don't work at all with mod_deflate and apache never
48
+ # sends 304 for its own etags (304 only when manually removing the
49
+ # extra "-gzip" etag suffix). See
50
+ # https://bz.apache.org/bugzilla/show_bug.cgi?id=45023
51
Header set Cache-Control "public, max-age=31536000, immutable"
52
53
0 commit comments