Centos

如何在 CentOS 7 上安裝 nginx 的 fancyindex 模組?

  • December 14, 2020

我的 CentOS 7 伺服器上安裝了 nginx 1.10.2。我正在嘗試打開fancyindex。我看到我需要以某種方式安裝 fancyindex 模組。

在 Ubuntu 上,根據這個站點,有一個單獨的包叫做nginx-extras添加 fancyindex。我無法在 CentOS 7 中找到等效的軟體包。

我已經nginx-all-modules.noarch安裝了,但這似乎不包括fancyindex。

我一直在尋找。有人能指出我正確的方向或明確告訴我 fancyindex 沒有yum辦法在 CentOS 上安裝嗎?我寧願不從原始碼編譯,但如果需要的話。

如果沒有官方的安裝方式,從原始碼編譯的步驟將不勝感激。

[root@vps ~]# nginx -V
nginx version: nginx/1.10.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

注意:自發布此答案以來,相關儲存庫已移至付費訂閱模式。

對於擁有官方穩定 Nginx 儲存庫的 CentOS 7 使用者,fancyindex 包含在帶有動態模組的額外軟體包儲存庫中。請參閱https://www.getpagespeed.com/redhat

yum -y install https://extras.getpagespeed.com/release-el7-latest.rpm
yum -y install nginx-module-fancyindex

我不知道任何包,所以你需要從原始碼編譯。

來源: https ://www.nginx.com/resources/wiki/modules/fancy_index/

解壓 NGINX 原始碼。

$ gunzip -c nginx-?.?.?.tar.gz | tar -xvf -

使用 Git 下載最新版本。

$ git clone https://github.com/aperezdc/ngx-fancyindex.git ngx-fancyindex

切換到包含 NGINX 源的目錄,使用所需選項執行配置腳本,並確保放置一個 –add-module 標誌指向包含精美索引模組源的目錄。

$ cd nginx-?.?.?
$ ./configure --add-module=../ngx-fancyindex  [extra desired options]

建構並安裝軟體。

$ make
$ sudo make install

使用模組的配置指令配置 NGINX。

引用自:https://unix.stackexchange.com/questions/354667