您好,登錄后才能下訂單哦!
怎么在Nginx中添加ngx-fancyindex模塊?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
安裝ngx-fancyindex
第一步
查看已安裝的 Nginx 版本與模塊信息:
nginx -V
輸出信息類似于:
nginx version: nginx/1.8.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx
第二步
下載對應版本的 Nginx 源碼包: http://nginx.org/download/
下載最新版本的 ngx-fancyindex 源碼包: https://github.com/aperezdc/ngx-fancyindex/releases
上傳至服務器并解壓,這里我們上傳到/tmp目錄。
第三步
編譯 Nginx
cd /tmp/nginx-1.8.0 #進入源碼目錄 ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx --add-module=../ngx-fancyindex-0.4.2 make #編譯
特別注意:
./configure后面的配置要對應第一步的輸出信息,防止不必要的麻煩,–add-module=../ngx-fancyindex-0.4.2 這里根據你下載解壓后的 ngx-fancyindex 目錄名來。
只需要 make,不需要 install.
第四步
重命名舊的 nginx 文件:
mv /usr/local/nginx /usr/local/nginx.bak
復制重新編譯的nginx文件到nginx原來安裝目錄下:
cp ./objs/nginx /usr/local/nginx/sbin/
重新啟動 nginx 服務:
service nginx restart
配置ngx-fancyindex
修改nginx配置文件
location /path/ #指定~/path目錄開啟自動列目錄 { alias /alliot/path/; #虛擬目錄/alliot/path/開啟自動列目錄 root /path/; #實際目錄/path/開啟自動列目錄 與alias二選一 fancyindex on; #開啟nginx目錄瀏覽功能 fancyindex_exact_size off; #文件大小從KB開始顯示 fancyindex_localtime on; #顯示文件修改時間為服務器本地時間 fancyindex_footer "footer.html"; #設置footer為當前目錄下的footer.html fancyindex_ignore "footer.html"; #設置不列出當前目錄下的footer.html }
上面 alias 與 root 的區別在于, alias 指定的是當前目錄,而 root 指定的是根目錄,一般情況下,建議在 “location /” 中通過root命令來配置根目錄。
重載配置
執行
nginx -s reload
看完上述內容,你們掌握怎么在Nginx中添加ngx-fancyindex模塊的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。