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 f6b5298 commit 50adafaCopy full SHA for 50adafa
static/nginx.conf
@@ -1,3 +1,7 @@
1
+# https://docs.nginx.com/nginx/admin-guide/dynamic-modules/brotli/
2
+load_module modules/ngx_http_brotli_filter_module.so; # for compressing responses on-the-fly
3
+load_module modules/ngx_http_brotli_static_module.so; # for serving pre-compressed files
4
+
5
user www-data;
6
worker_processes 2;
7
pid /run/nginx.pid;
@@ -11,10 +15,6 @@ events {
11
15
use epoll;
12
16
}
13
17
14
-# https://docs.nginx.com/nginx/admin-guide/dynamic-modules/brotli/
-load_module modules/ngx_http_brotli_filter_module.so; # for compressing responses on-the-fly
-load_module modules/ngx_http_brotli_static_module.so; # for serving pre-compressed files
-
18
http {
19
##
20
# Basic Settings
0 commit comments