Nginx 최적화 매개 변수 변조
1224 단어 Nginx 최적화 설
예 를 들 어 2 개의 물리 CPU 한 대의 각 CPU 의 핵 수 는 4 핵 이다.계산 결 과 는 8 * 2 = 16 (worker processes XX) [root@blog ~]# vi /etc/nginx/nginx.conf
[root@blog ~]# vi /etc/nginx/nginx.conf
user nginx;worker_processes 24;모든 CPU 의 핵 수 합계
error_log /var/log/nginx/error.log warn;pid /var/run/nginx.pid;
이벤트 {worker connections 24576; * * 24 핵 곱 하기 핵 당 1024 연결 수}
http {include /etc/nginx/mime.types;default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
**sendfile on;**
**tcp_nopush on;** # I/O , Nginx 。
**keepalive_timeout 65;**
**gzip on;** ,
include /etc/nginx/conf.d/*.conf;
**server_tokens off;**