一.關閉防火牆和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:
配置目錄索引瀏覽器
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;
4.進到啓動nginx的目錄
cd /data/server/nginx/sbinserver
5.重讀nginx
./nginx -s reload
6.在瀏覽器輸入ip
htm