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 fb7dd9a commit 9576169Copy full SHA for 9576169
compose/frontend/default.conf
@@ -2,6 +2,30 @@
2
proxy_temp_path /tmp/proxy_temp;
3
proxy_cache_path /var/cache/nginx keys_zone=cache:50m;
4
5
+gzip on;
6
+gzip_vary on;
7
+gzip_min_length 1024;
8
+gzip_proxied any;
9
+gzip_types
10
+ text/css
11
+ text/plain
12
+ text/javascript
13
+ application/javascript
14
+ application/json
15
+ application/x-javascript
16
+ application/xml
17
+ application/xml+rss
18
+ application/xhtml+xml
19
+ application/x-font-ttf
20
+ application/x-font-opentype
21
+ application/vnd.ms-fontobject
22
+ image/svg+xml
23
+ image/x-icon
24
+ application/rss+xml
25
+ application/atom_xml;
26
+gzip_disable "MSIE [1-6]\.";
27
+
28
29
server {
30
listen 3000;
31
listen [::]:3000;
0 commit comments