Nginx 운영 가이드

Nginx 운영 가이드
글 목록
  • Nginx 운영 지침
  • 1. 설치
  • 2. 프로필
  • 3. Gzip 압축 설정
  • 3.1 프로필 수정
  • 3.2 매개 변수 분석
  • 3.3 설정 후 nginx 다시 시작
  • 1. 설치
    # centos7  nginx
    
    #   epel yum 
    yum install -y epel-release
    
    #   ngin x
    yum install nginx
    

    2. 프로필
    #         /etc/nginx
    
    #           
    /usr/share/nginx/html
    
    #         
    /etc/nginx/conf.d/default.conf
    
    #    Nginx          
    /etc/nginx/conf.d/
    
    # Nginx    
    /etc/nginx/nginx.conf
    

    3. Gzip 압축 설정
    3.1 프로필 수정
    #    nginx.conf  http  
    
    ##
    # `gzip` Settings
    gzip on;
    gzip_disable "msie6";
    
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_min_length 256;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon;
    

    3.2 매개 변수 분석
    gzip 추가min_length 256;명령, Nginx 에 256 바이트 이하 의 파일 을 압축 하지 말 라 고 알려 줍 니 다.이것 은 매우 작은 파일 입 니 다. gzip 을 압축 하지 않 아 도 됩 니 다types 는 압축 을 나타 내 는 파일 형식 으로 웹 글꼴 형식, ioc 아이콘, SVG 이미지 등 다른 형식의 파일 도 추가 할 수 있 습 니 다.
    3.3 설정 후 nginx 다시 시작
    #   nginx
    systemctl restart nginx
    

    좋은 웹페이지 즐겨찾기