We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb1c927 commit 13c4c2bCopy full SHA for 13c4c2b
1 file changed
README.md
@@ -2,6 +2,37 @@
2
3
ARM64, ARMV7, AMD64 全平台支持添加
4
5
+# 增加brotli 支持
6
+在nginx配置文件中增加
7
+```yaml
8
+ brotli on;
9
+ brotli_comp_level 6;
10
+ brotli_types
11
+ text/css
12
+ text/plain
13
+ text/javascript
14
+ application/javascript
15
+ application/json
16
+ application/x-javascript
17
+ application/xml
18
+ application/xml+rss
19
+ application/xhtml+xml
20
+ application/x-font-ttf
21
+ application/x-font-opentype
22
+ application/vnd.ms-fontobject
23
+ image/svg+xml
24
+ image/x-icon
25
+ application/rss+xml
26
+ application/atom_xml
27
+ image/jpeg
28
+ image/gif
29
+ image/png
30
+ image/icon
31
+ image/bmp
32
+ image/jpg;
33
+
34
+```
35
36
# 增加 CA 证书 支持
37
在 docker compose 中映射ca文件
38
```
0 commit comments