Infra & Devops/Nginx

[Nginx] ngx_http_gzip_static_module

겸둥이xz 2023. 11. 12. 20:08
반응형

The ngx_http_gzip_static_module module allows sending precompressed files with the “.gz” filename extension instead of regular files.

 

- 정적파일을 gzip 압축으로 제공하는 기능

- 요청할때마다 압축하지 않고, 미리 압축해서 제공

- 설치시 configure 옵션에 --with-http_gzip_static_module 추가필요

- nginx 설정에서 gzip_static on;

 

 

Syntax: gzip_static on | off | always;

Default: gzip_static off;

Context: http, server, location

 

 

반응형