nginx實現目錄索引

2021-10-01 17:37:36 字數 1151 閱讀 3977

編譯安裝nginx

yum安裝依賴環境

yum -y install pcre-devel zlib-devel lrzsz
rz將nginx-1.11.5.tar.gz上傳到虛擬機器中

[root@localhost src]# rz
解壓並建立執行使用者

[root@localhost src]# tar zxf nginx-1.11.5.tar.gz

[root@localhost nginx-1.11.5]# groupadd nginx

[root@localhost nginx-1.11.5]# useradd -s /sbin/nologin -m -g nginx nginx

配置並編譯安裝

[root@localhost nginx-1.11.5]# ./configure --prefix=/data/server/nginx --user=nginx --group=nginx

[root@localhost nginx-1.11.5]# make && make install

做路徑優化

[root@localhost nginx-1.11.5]# ln -s /data/server/nginx/sbin/nginx /usr/local/sbin/
修改配置檔案

[root@localhost nginx-1.11.5]# cd /data/server/nginx/conf/

[root@localhost conf]# vim nginx.conf

新增以下行

儲存退出

重啟服務,關閉防火牆網頁訪問自己虛擬機器的ip驗證

[root@localhost conf]# nginx -s reload

[root@localhost conf]# systemctl stop firewalld

nginx實現目錄索引

主要用到autoindex 這個引數來開啟,其配置如下 我是原始碼安裝到了 data sever nginx 編輯nginx配置檔案 vim data server nginx conf nginx.conf root data server nginx 指定實際目錄絕對路徑 autoindex o...

Nginx目錄索引模組

三.配置檔案舉例 四.修改完配置檔案的注意事項 syntax default context 預設中 錄亂碼,新增上解決亂碼。server 使用者請求game.oldboy.com centos oldboy code centos location centos nginx tsystemctl ...

Nginx學習筆記 目錄索引

回到佔佔推薦部落格索引 前幾天整理了 docker的學習筆記索引 受到了很多朋友的關注,今天把nginx的文章也整理一下,以後將永久更新,像大叔之前的 ef文章系列 mvc文章系列 lind文章系列 netcore跨平台系列 mongodb文章系列 redis文章系列 等等,都是會慢慢的總結下去的,...