We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54e83ff commit 8d2bf84Copy full SHA for 8d2bf84
nginx/nginx.conf
@@ -30,8 +30,8 @@ http {
30
keepalive_timeout 65;
31
32
gzip on;
33
- gzip_http_version 1.0;
34
- gzip_comp_level 2;
+ gzip_comp_level 4;
+ gzip_min_length 1024;
35
gzip_types
36
application/atom+xml
37
application/javascript
@@ -46,6 +46,23 @@ http {
46
text/plain
47
text/xml;
48
49
+ brotli on;
50
+ brotli_comp_level 4;
51
+ brotli_min_length 1024;
52
+ brotli_types
53
+ application/atom+xml
54
+ application/javascript
55
+ application/json
56
+ application/rss+xml
57
+ application/xml
58
+ image/svg+xml
59
+ text/css
60
+ text/javascript
61
+ text/json
62
+ text/html
63
+ text/plain
64
+ text/xml;
65
+
66
client_max_body_size 80M;
67
68
absolute_redirect off;
0 commit comments