最簡單的配置nginx.conf使之成爲靜態文件下載服務器

sendfile        on;
    tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
    
    server {
        listen       8082;        #端口
        server_name  localhost;   #服務名
        root    /dev/shm/update;  #顯示的根索引目錄
        autoindex on;             #開啓索引功能
        autoindex_exact_size off; # 關閉計算文件確切大小(單位bytes),只顯示大概大小(單位kb、mb、gb)
        autoindex_localtime on;   # 顯示本機時間而非 GMT 時間
    }
相關文章
相關標籤/搜索