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 db91366 commit 3afad0cCopy full SHA for 3afad0c
nginx-conf/default.conf
@@ -3,6 +3,17 @@ server {
3
listen [::]:80;
4
server_name localhost;
5
6
+ gzip on;
7
+ gzip_static on;
8
+ gzip_min_length 16k;
9
+ gzip_buffers 4 128k;
10
+ gzip_http_version 1.1;
11
+ gzip_comp_level 3;
12
+ gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml;
13
+ gzip_vary on;
14
+ gzip_proxied expired no-cache no-store private auth;
15
+ gzip_disable "MSIE [1-6]\.";
16
+
17
#access_log /var/log/nginx/host.access.log main;
18
19
location / {
0 commit comments