반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- devops
- 인프라
- docker
- 도커 컨테이너
- centOS7
- 도커 명령어
- Python
- 부스트코스
- linux
- 쿠버네티스
- 도커 이미지
- 네트워크
- Swift
- 리눅스
- AWS
- centOS
- k8s
- os
- NGINX
- 프로세스
- 컨테이너
- boj
- 데브옵스
- 클라우드
- 도커
- 운영체제
- ios
- C++
- swift 클로저
- kubernetes
Archives
- Today
- Total
귀염둥이의 메모
[Nginx] ngx_http_gzip_static_module 본문
반응형
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
반응형
'Infra & Devops > Nginx' 카테고리의 다른 글
[Nginx] HTTP/2 Rapid Reset Attack (w/ keepalive_requests, http2_max_concurrent_streams) (0) | 2023.12.21 |
---|---|
[Nginx] PCRE JIT 옵션 (0) | 2023.11.12 |
[Nginx] 주요 설정 파일, 디렉터리, 명령 (0) | 2022.05.06 |
Comments