依賴包安裝:
安裝gcc gcc-c++:yum -y install gcc gcc-c++ autoconf automake
安裝pcre:
yum -y install pcre pcre-devel
安裝zlib:
yum -y install zlib zlib-devel
cd /usr/local/src
wget -c
解壓:tar zxvf nginx-1.14.1.tar.gz
進入安裝包目錄:
cd nginx-1.14.1
安裝:./configure
make
make install
啟動與訪問:
啟動:/usr/local/nginx/sbin/nginx
關閉防火牆:
service iptables stop
訪問:localhost
nginx 常用的幾個命令:
/usr/local/nginx/sbin/nginx-s reload# 重新載入配置檔案/usr/local/nginx/sbin/nginx-s reopen# 重啟 nginx
/usr/local/nginx/sbin/nginx-s stop# 停止 nginx
Nginx安裝 多網域名稱訪問
web服務 apache iis django web框架 lvs 負載均衡 章文嵩博士 vue 尤雨溪 tengine f5 硬體負載 conf 配置檔案 html 存放靜態檔案 index.html 是預設的歡迎頁面 logs 日誌目錄 sbin 二進位制檔案 啟動以後會生成乙個主程序,根據配置...
nginx 安裝配置,訪問靜態網頁
安裝 nginx。注意,這種方式最簡單,但無法新增第三方庫。yum install y nginx編寫靜態網頁。mkdir data web vim index.html hello world 在 etc nginx nginx.conf 中新增 server,以訪問靜態網頁。server啟動 n...
Nginx訪問日誌
日誌對於統計排錯來說非常有利的。nginx的log日誌分為access log 和 error log.nginx。其中access log 記錄了哪些使用者,哪些頁面以及使用者瀏覽器 ip和其他的訪問資訊。error log 則是記錄伺服器錯誤日誌。日誌相關的配置有 access log erro...