NGINX目錄索引

一.關閉防火牆和SElinuxhtml

systemctl stop firewalld
setenforce 0

二.源碼安裝NGINX
下載源碼包並解壓:linux

wget http://nginx.org/download/nginx-1.16.0.tar.gz
tar -zxvf nginx-1.16.0.tar.gz

三.編譯安裝nginx

cd /usr/local/src
cd nginx-1.16.0
./configure  --prefix=/data/server/nginx
make && make install

進到NGINX目錄中啓動NGINXvim

cd /data/server/nginx/sbin
./nginx

在網頁輸入IP:
NGINX目錄索引
配置目錄索引瀏覽器

  1. 在/var/www/html目錄下建立文件www xxx yyy
    cd /var/www/html
    touch www xxx yyy
    2.分別在www xxx yyy三個文件內加入安裝包
    vim www
    在其中放入安裝連接http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.15.tar.gz

vim xxx
在其中放入安裝連接http://nginx.org/en/download.htmlide

3.配置文件
vim /data/server/nginx/conf/nginx.confcode

在server模塊下添加
          autoindex on;
        autoindex_exact_size off;
      autoindex_localtime on;
      root   /var/www/html;
在location下添加
        autoindex on;
        autoindex_exact_size off;
      autoindex_localtime on;

NGINX目錄索引

4.進到啓動nginx的目錄
cd /data/server/nginx/sbinserver

5.重讀nginx
./nginx -s reload
6.在瀏覽器輸入ip
NGINX目錄索引htm

相關文章
相關標籤/搜索