安裝必備外掛程式
yum -y install gcc automake autoconf libtool make
yum install gcc gcc-c++
yum方式安裝openssl、pcre、zlib
make && make install
nginx安全證書生成
openssl genrsa -out privkey.pem 1024/2038
openssl req -new -x509 -key privkey.pem -out server.pem -days 365
啟動服務
cd /usr/local/nginx
啟動服務
./nginx
./nginx -s reload
檢查服務
./nginx -t
停止服務
./nginx -s stop
測試本地是否啟動成功,返回帶有welcome to nginx! 的**即表示啟動成功
curl
關閉防火牆,禁止自啟動
service iptables stop
chkconfig iptables off
nginx配置https和認證
#配置h5資源路徑
location /dist/
}}root 、alias指令區別(alias是乙個目錄別名的定義,root則是最上層目錄的定義。alias後面必須要用「/」結束,否則會找不到檔案的,而root則可有可無)
location /img/
若按照上述配置的話,則訪問/img/目錄裡面的檔案時,ningx會自動去/var/www/image/目錄找檔案
location /img/
location指令詳解參考位址
nginx作為**需要訪問nginx所在的服務才可以發揮作用。就像黃牛買票,需要找到某個黃牛作為**再買票。
Linux下安裝nginx 並且配置https網域名稱
2.2nginx安裝 安裝前確認linux下這些庫已經安裝 yum install perl yum install gcc yum install gcc c yum y install net tools 將安裝包放到 home zwr nginx install目錄下,然後再該目錄下執行此指令...
Nginx安裝配置,支援http以及https
一 nginx安裝 可參考 nginx 安裝配置 二 配置http 修改配置檔案nginx.conf,安裝上邊的步驟安裝,應該是在 usr local webserver nginx conf這個目錄下 修改配置檔案第乙個server的location值如下,並在上邊加入upstream backe...
nginx啟動與配置
一 啟動 cd usr local nginx sbin.nginx 啟動nginx 的幾個程序 二 重啟 僅僅更改了配置,重啟nginx 平滑啟動 1 kill hup主程序號或程序號檔案路徑 或者 2 cd usr local nginx sbin nginx s reload 判斷配置檔案是否...