?安裝一些Ngnix依賴
yum -y install pcre*
yum -y install openssl*
創(chuàng)建nginx文件夾
mkdir nginx
安裝nginx
wget http://nginx.org/download/nginx-1.12.2.tar.gz
解壓
tar -zxvf nginx-1.12.2.tar.gz?
進入解壓后的文件夾
通過./configure執(zhí)行
通過make -j4對源碼進行編譯
通過make install進行安裝
nginx不能直接使用蓉媳,建立軟連接
進入 /usr/bin/? 目錄下
使用??ln -s /usr/local/nginx/sbin/nginx nginx? 創(chuàng)建軟連接
啟動nginx服務
ps -ef|grep nginx? ?查看nginx服務
nginx -s stop? 停止nginx服務
啟動nginx服務,瀏覽器訪問公網ip地址
指向的是html這個文件夾
創(chuàng)建一個nginx.conf文件
vim nginx.conf
然后? ?:wq保存退出,什么都不寫,目前
通過命令? vim /usr/local/nginx/conf/nginx.conf笙瑟,修改文件
include /root/nginx/*.conf;
vim nginx.conf打開文件
# autoindex on? ?關閉它
寫入server { ? listen 80; ? server_name localhost; ? root /root/nginx/upload;? ?# autoindex on; ? add_header Cache-Control "no-cache, must-revalidate"; ? location / { ? ? add_header Access-Control-Allow-Origin *; ? } }
創(chuàng)建upload文件夾? ?mkdir upload
并進入文件夾創(chuàng)建index.html
寫入hello world
檢查配置
nginx -t
nginx -s reload? ?重啟服務
最后重新打開公網ip理张,看到
下載file Zilla 來上傳文件