了解 Nginx部署入門

2021-10-11 03:03:06 字數 4532 閱讀 1271

@(nginx)[部署, 幫助]

cd /opt

# 解壓

tar -zxvf nginx-1.9.9.tar.gz

# 進入nginx目錄

cd nginx-1.9.9

# 設定安裝目錄

./configure --prefix=/opt/nginx

# 編譯安裝

make

make insatll

# 啟動

cd /opt/nginx/sbin/

./nginx

# 檢視服務是否啟動

ps -ef |grep nginx

root 4682 1 0 10:10 ? 00:00:00 nginx: master process ./nginx

nobody 4683 4682 0 10:10 ? 00:00:00 nginx: worker process

root 4685 1903 0 10:10 pts/0 00:00:00 grep --color=auto nginx

問題一、bind() to 0.0.0.0:80 failed (98: address already in use)

# 檢視哪個服務占用80埠

# 關閉

問題二、nginx中配置gzip_static on提示nginx: [emerg] unknown directive 「gzip_static「 in

## 配置

## 重新安裝

make && make install

# 第一次載入預設配置檔案

./nginx -c nginx.conf

# 第二次載入另外配置檔案

Nginx部署入門

nginx 是俄羅斯人編寫的十分輕量級的 http 伺服器,nginx,它的發音為 engine x 是乙個高效能的http和反向 伺服器,同時也是乙個 imap pop3 smtp 伺服器。nginx 是由俄羅斯人 igor sysoev 為俄羅斯訪問量第二的 rambler.ru 站點開發的,它...

Nginx初步了解

反向 是在服務端發生的。服務端隱藏了真實的ip,客戶端通過請求反向 伺服器,讓反向 伺服器訪問後端的伺服器。正向 是在客戶端發生的。比如vpn,vpn實在客戶端的瀏覽器中設定的,瀏覽器先訪問vpn位址,然後vpn將請求 至對應的伺服器。nginx提供了多種負載均衡策略用於分發使用者請求,它們分別是 ...

Nginx安裝部署

一般我們都需要先裝pcre,zlib,前者為了重寫rewrite,後者為了gzip壓縮。1.選定原始碼目錄 選定目錄 usr local cd usr local 2.安裝pcre庫 cd usr local wget tar zxvf pcre 8.21.tar.gz cd pcre 8.21 c...