Nginx 模块:如何安装开启 FancyIndex

发布于: 2 February, 2014
分享:

准备工作

如果是全新安装,需要准备Nginx 源文件和 PCRE 库

sudo apt-cache search pcre sudo apt-get install libpcre3-dev

安装 git

sudo apt-get install git

下载并安装 FancyIndex

cd /usr/local/src
git clone git://gitorious.org/ngx-fancyindex/ngx-fancyindex.git ngx-fancyindex

查看当前 Nginx 版本

sudo nginx -v

安装 FancyIndex

./configure --add-module=../ngx-fancyindex
make && make install

修改 Nginx 虚拟主机配置文件

nano /etc/nginx/sites-available/default

找到 location 配置节点:

location / {
    fancyindex on; # Enable fancy indexes.
    fancyindex_exact_size off; # Output human-readable file sizes
}
分享:

0 留言

留言

您的留言将被人工审核,请勿发表色情、反动言论。

您可能感兴趣

Ubuntu 服务器 18.04 平台下搭建 Node.js 应用程序服务器

https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-...

Ubuntu Server 安装和配置 Shadowsocks 服务端及客户端

Ubuntu Server 安装和配置 Shadowsocks 服务端