nginx 최적화 - nginx 이벤트 처리 모델 최적화 use epoll;

1267 단어
성능 최적화 - nginx 이벤트 처리 모델 최적화 use epoll;
이벤트 블록 에 추가
   use epol;
 
주 프로필 nginx. conf 에 설정
[root@web01 conf]# cat /application/nginx/conf/nginx.conf
worker_processes  2;
worker_cpu_affinity 01 10;
error_log logs/error.log;
 
#  Nginx worker         
worker_rlimit_nofile 65535;
 
user www www;
events {
    #               
    worker_connections  20480;
    #  epoll  
    use epoll;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    #      
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
 
 
    #    
    include /application/nginx/conf/extra/www.conf;
    include /application/nginx/conf/extra/blog.conf;
    include /application/nginx/conf/extra/bbs.conf;
    include /application/nginx/conf/extra/edu.conf;
    include /application/nginx/conf/extra/phpmyadmin.conf;
    include /application/nginx/conf/extra/status.conf;
 
    #     
    server_tokens off;
}

다음으로 전송:https://blog.51cto.com/13673885/2300282

좋은 웹페이지 즐겨찾기