Skip to content

Commit a15204f

Browse files
committed
Enable gzip and brotli by default
1 parent 44e9f8e commit a15204f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nginx.conf

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ http {
2525

2626
keepalive_timeout 65;
2727

28-
#gzip on;
28+
gzip on;
29+
30+
brotli on;
31+
brotli_static on;
2932

3033
include /etc/nginx/conf.d/*.conf;
31-
}
34+
}

0 commit comments

Comments
 (0)