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 留言

留言

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