Nginx 프로필 최적화

nginx. conf 주 프로필:
user    web web;    #nginx 실행 사용자 와 그룹
worker_processes 8;      #주 프로 세 스 개수
worker_rlimit_nofile 102400;    #파일 핸들 수
error_log    /usr/local/nginx/logs/nginx_error.log    crit;    #오류 로그
pid            /var/run/nginx.pid;
events
{         use epoll;    #epoll 모델 사용 하기
         worker_connections 102400;  #최대 동시 접속 수} http
{
         include           mime.types;
         default_type    application/octet-stream;
         charset utf-8;    #기본 문자 집합
         server_names_hash_bucket_size 256;    #서버 이름 의 hash 표 크기
         client_header_buffer_size 256k;    #파일 업로드 크기 제한
         large_client_header_buffers 4 256k;    #헤더 요청 캐 시 크기 설정         client_max_body_size           50m;    #클 라 이언 트 가 요청 한 최대 단일 파일 바이트 수 를 허용 합 니 다.         
         client_body_buffer_size        256k;   #버퍼 에이전트 버퍼 사용자 측 에서 요청 한 최대 바이트 수
         client_header_timeout     3m;    #클 라 이언 트 가 요청 한 머리 시간 초과 설정
         client_body_timeout 3m;    #클 라 이언 트 가 요청 한 주체 시간 초과 설정
         send_timeout             3m;    #클 라 이언 트 의 응답 시간 초 과 를 지정 합 니 다. 이 설정 은 전체 전송 기 에 사용 되 지 않 고 두 번 의 클 라 이언 트 가 작업 을 읽 는 동안 클 라 이언 트 가 데 이 터 를 읽 지 않 으 면 nginx 는 연결 을 닫 습 니 다.  
         sendfile on;     # ,sendfile nginx sendfile , on, IO , off, I/O , 。 : off。
        
         #autoindex on;     # , , 。
         tcp_nopush on;     # , nginx , 。
         tcp_nodelay on;     # , nginx , -- , , 。
         keepalive_timeout 120;    #
         include                    vhosts/upstream.conf;
         include                    vhosts/www.linux.com.conf; }
upstream. conf 프로필
upstream www.linux.com {
    #백 엔 드 웹 서버 를 설정 하면 가중치 weight 를 추가 할 수 있 습 니 다. weight 숫자 가 클 수록 요청 이 많 습 니 다.
    server 192.168.1.100:80;    
    server 192.168.1.101:80;
    server 192.168.1.102:80;
    #server 192.168.1.104:80 weight=5;    
    #server 192.168.1.105:80 weight=4;
    }
www. linux. com. conf 프로필 서버 {
    listen             80;
    server_name    www.linux.com;    charset utf-8;
    index index.html index.htm;
    root    /home/web/;
    location ~ ^/nginxstatus {
        stub_status on;
        access_log off;
    }    location / {
             proxy_redirect off ;
             # Web X-Forwarded-For IP
             proxy_set_header Host $host;
             proxy_set_header X-Real-IP $remote_addr;    
             proxy_set_header REMOTE-HOST $remote_addr;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             client_max_body_size 50m;    #클 라 이언 트 가 요청 한 최대 단일 파일 바이트 수 를 허용 합 니 다.   
             client_body_buffer_size 256k;    #버퍼 에이전트 버퍼 사용자 측 에서 요청 한 최대 바이트 수
             proxy_connect_timeout 30;    #nginx 와 백 엔 드 서버 연결 시간 초과 (프 록 시 연결 시간 초과)
             proxy_send_timeout 30;    #백 엔 드 서버 데이터 전송 시간 (프 록 시 전송 시간 초과)
             proxy_read_timeout 60;    #연결 성공 후 백 엔 드 서버 응답 시간 (프 록 시 수신 시간 초과)
             proxy_buffer_size 256k;    #프 록 시 서버 (nginx) 에서 사용자 헤드 정 보 를 저장 하 는 버퍼 크기 설정
             proxy_buffers 4 32k;    #proxy buffers 버퍼, 웹 페이지 가 평균 32k 이하 이면 이렇게 설정 합 니 다.
             proxy_busy_buffers_size 256k;    #고부 하 버퍼 크기 (proxy buffers * 2)
             proxy_temp_file_write_size 256k;    #캐 시 폴 더 크기 설정
             proxy_max_temp_file_size 128m;
             proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
             proxy_pass    http://www.linux.com;             access_log  logs/www.linux.com.access.log  main;     
    }
        location ~ .(jsp|jspx|do)?$ {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://www.linux.com:80;    }
    #js 와 css 파일 캐 시
    location ~ .*\.(js|css)?$ {        expires 1h;    }
    #그림 파일 캐 시    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {        expires 10d;    }
    #. ht 파일 접근 금지    location ~ /\.ht {        deny all;    }
}

좋은 웹페이지 즐겨찾기