nginx. conf 파일 설정 유 틸 리 티 사례

983 단어 중간 부품
컴 파일 로 설 치 된 nginx 1.16 버 전 을 보 여 줍 니 다.
\ # 설정 파일 경로: / usr / local / nginx / conf / nginx. conf
#user  nobody;
worker_processes  4;
worker_rlimit_nofile 1024000;
working_directory /nginx;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024000;
    accept_mutex off;
    }
#accept_mutex   :        ,     accept_mutex,    Worker         ,     Worker       Worker        ;      accept_mutex,     Worker     ,     Worker      ,   Worker         ,   「    」。Nginx     acept_mutex,        。      ,              ,         (sar -w)      ,              ,        ,          。
thread_pool one threads=128 max_queue=0;
http {
    include       mime.types;
    default_type  application/octet-stream;
    server_tokens off;
    client_header_buffer_size 16k;
    client_body_buffer_size 512k;
    client_body_temp_path /dev/shm/client_body_temp;
   
   

좋은 웹페이지 즐겨찾기