下面拿vmware workstation 虛擬機器為實驗環境給大家做一下
1)yum -y install pcre-devel zlib-devel.x86_64 //安裝支援軟體
**2)**useradd -m -s /sbin/nologin nginx //建立執行nginx的使用者和組
3)編譯安裝nginx
//具體選項根據實際需求來訂,可參考"./configure --help"
make && make install //編譯安裝4)為使管理員直接執行「ngnx」建立一軟連線
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
5)接下來就直接啟動nginx
nginx
netstat -anpt | grep nginx //檢視服務是否執行
為使nginx服務的啟動停止過載更加方便,可編寫nginx 服務指令碼下面改一下nginx的配置檔案
路徑為/usr/local/conf/nginx.conf
裡面的配置檔案分為三部分
(1)全域性配置
#user nobody; //執行使用者
worker_processes 1; //工作程序數量
#error_log logs/error.log; 錯誤日誌檔案的位置
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid; //pid檔案的位置
(2)i/o事件配置
events
(3)http配置
504 /50x.html; //內部錯誤反饋頁面
location = /50x.html根據實際情況進行更改
Nginx基本配置及應用
nginx 發音同engine x 是乙個非同步框架的 web伺服器,也可以用作反向 負載平衡器 和 http快取。1.配置檔案結構.全域性塊 events http http塊 location pattern server http全域性塊 2.結構詳解 全域性塊 配置影響nginx全域性的指令...
nginx安裝及基本配置
nginx安裝 示例環境 centos,軟體目錄src 1.nginx 依賴安裝 pcre 8.37.tar.gz openssl 1.0.1t.tar.gz zlib 1.2.8.tar.gz nginx 1.11.1.tar.gz wget 1 安裝pcre依賴包。安裝包放入linux 系統中 ...
nginx配置 location配置方法及例項詳解
location匹配的是nginx的哪個變數?request uri location的匹配種類有哪些?格式 location 空格 uri location搜尋順序 順序 no優先順序 location location 完整路徑 location 路徑 location 正則順序 locatio...