범용 Nginx 최적화 설정
# nginx
use Nginx;
# cpu
worder_processes 16;
# cpu
worder_cpu_affinity auto;
#
error_log /var/log/nginx/error.log warn;
# pid
pid /var/run/nginx.pid;
# 1
worder_rlimit_nofile 35535;
events{
use epoll;
#
worder_connections 10240;
}
http{
include /etc/nginx/mime.types;
# Content-Type
default application/octet-stream;
#
charset utf-8;
#
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" "$request_uri"';
#
access_log /var/log/nginx/access.log main;
#
# access_log off;
#Core modlue
# sendfile
sendfile on;
#
#tcp_nopush on;
#
#tcp_nodeny on;
keepalive_timeout 65;
#Gzip module
# gzip
gzip on;
# ie6
gzip_disable "MSIE [1-6]\.";
gzip_http_version 1.1;
#Virtal Server
include /etc/nginx/conf.d/*.conf;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【CoreOS】이중화 구성 Keepalived+NginxLB+NginxWEB(1)(1) IP 주소 192.168.0.50의 VIP (virtual ip)를 가진 서버에 액세스 (2)Docker-Nginx 80번 포트에 착신 (3) 80번 포트 착신 후 Docker-Nignx-Proxy가 Dock...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.