nginx 정적 다운로드 인터페이스 설정

844 단어
우선, 공식 설정 링크:https://docs.nginx.com/nginx/admin-guide/web-server/serving-static-content/
다음 설정 파일 을 붙 입 니 다:
    charset UTF-8;  ##       
    location / {
            autoindex on; ##    
                    autoindex_exact_size on; ##    
            autoindex_localtime on;   ##    
                    sendfile           on;  ##   sendfile                 ,                           
                    sendfile_max_chunk 1m;  ##                   ,    sendfile_max_chunk                
                    tcp_nopush on;      ##  tcp_nopush             。   NGINX                        HTTP     
                    tcp_nodelay       on;  ##     Nagle    .   ,          ,         ,         。
                    keepalive_timeout 65;
        }

다음으로 전송:https://www.cnblogs.com/gardenofhu/p/11583871.html

좋은 웹페이지 즐겨찾기