nginx安裝配置

2022-02-22 17:08:12 字數 2264 閱讀 4136

安裝

brew install  nginx
啟動命令位置

/usr/local/bin/nginx

配置檔案路徑

/usr/local/etc/nginx/nginx.conf

安裝依賴

yum -y install gcc pcre-devel zlib-devel openssl openssl-devel

解壓縮

## 解壓

tar -zxvf nginx-1.9.9.tar.gz

##進入nginx目錄

cd nginx-1.9.9

## 配置

./configure --prefix=/usr/local/nginx

# make

make

make install

nginx和依賴包

在 /usr/local/src目錄下:

make install啟動

cd /usr/local/nginx/sbin

./nginx

停止

cd /usr/local/nginx/sbin

./nginx -s stop

cd /usr/local/nginx/sbin

./nginx -s reload

nginx配置檔案在安裝目錄,/usr/local/nginx/conf/nginx.conf

nginx配置檔案的組成
從配置檔案開始到event塊之間的內容,設定一些影響nginx伺服器整體執行的配置指令,

主要包括配置nginx的使用者(組)、允許生成的worker process數、程序pid存放路徑、日誌存放路徑和型別以及配置檔案的引入等。

全域性快

worker_processess 1;  # 處理併發的數量
event塊

影響nginx與使用者的網路連線。

如:worker_connections 1024; # 最大的連線數量

worker_connections 1024;  # 最大的連線數量
http塊

可包括http全域性塊、server塊

}}檢視

firewall-cmd --list-all
增加

firewall-cmd --add-port=80/tcp --permanent
firewall-cmd --reload

nginx安裝配置

主服務端 192.168.233.128 客戶端 192.168.233.131 192.168.233.132 192.168.233.134 主服務端和客戶端配置相同部分 yum y install zlib zlib devel yum y install pcre pcre devel yu...

nginx安裝配置

主要有三項 1 基本配置 2 path info支援 3 虛擬伺服器配置 1 埠 listen 90 預設為80,為避免衝突,可做修改。2 主機位址 root html 預設為安裝目錄下html目錄,可修改為如 d nginx。3 php支援 pass the php scripts to fast...

nginx安裝配置

之前安裝nginx一直是用原始碼的形式安裝,經常會在編譯後make的時候出現失敗。乙個乙個問題來解決比較麻煩。想了個解決的辦法 通過新增yum源,通過yum來安裝。1.安裝nginx依賴包 sudo yum install y zlib pcre openssl 2.配置nginx的yum源 sud...