We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95070a6 commit c768420Copy full SHA for c768420
1 file changed
containers/nginx/config/templates/default.conf.template
@@ -13,6 +13,22 @@ server {
13
14
charset utf-8;
15
16
+ gzip on;
17
+ gzip_vary on;
18
+ gzip_proxied any;
19
+ gzip_comp_level 6;
20
+ gzip_min_length 256;
21
+ gzip_types
22
+ text/plain
23
+ text/css
24
+ text/xml
25
+ text/javascript
26
+ application/javascript
27
+ application/json
28
+ application/xml
29
+ application/xml+rss
30
+ image/svg+xml;
31
+
32
location / {
33
try_files $uri $uri/ /index.php?$query_string;
34
}
0 commit comments