forked from AkkomaGang/akkoma
Properly enable gzip compression in nginx config
Given that there's already a bunch of other gzip options set in the nginx config, it's likely someone forgot to actually add the setting to turn gzip on, so let's fix that.
This commit is contained in:
parent
889b57df82
commit
9cec6aa5a1
1 changed files with 1 additions and 0 deletions
|
@ -58,6 +58,7 @@ server {
|
|||
ssl_stapling on;
|
||||
ssl_stapling_verify on;
|
||||
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_proxied any;
|
||||
gzip_comp_level 6;
|
||||
|
|
Loading…
Reference in a new issue