nginx配置web訪問以及檢視目錄檔案

浦濤發表於2018-12-12
server {
    listen       8111;
    server_name  localhost;

    location / {
        root   /root/jarServer;
        try_files $uri $uri/ /index.html;
        index  index.html;
            autoindex on;  # 開啟目錄檔案列表
            autoindex_exact_size on;  # 顯示出檔案的確切大小,單位是bytes
            autoindex_localtime on;  # 顯示的檔案時間為檔案的伺服器時間
            charset utf-8,gbk;  # 避免中文亂碼
    }
}

nginx.conf檔案設定。
像ftp那樣顯示檔案列表,nginx預設是不支援的,需要通過在location、server或http配置段新增額外引數:

autoindex on; # 開啟目錄檔案列表
autoindex_exact_size on; # 顯示出檔案的確切大小,單位是bytes
autoindex_localtime on; # 顯示的檔案時間為檔案的伺服器時間
charset utf-8,gbk; # 避免中文亂碼


相關文章