Enable gzip compression on nginx

Enable the gzip compression on nginx to improve performance
migrate-github-actions
Ernesto Serrano 2020-04-22 08:51:52 +02:00 committed by GitHub
parent 772d7aeaad
commit 365f521c93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -82,7 +82,13 @@ http {
fastcgi_pass 127.0.0.1:9000;
}
}
gzip on;
gzip_proxied any;
gzip_types text/plain application/xml text/css text/js text/xml application/x-javascript text/javascript application/json application/xml+rss;
gzip_vary on;
gzip_disable "msie6";
# Include other server configs
include /etc/nginx/conf.d/*.conf;
}