nginx的安裝與配置

2021-09-20 05:02:33 字數 1339 閱讀 3095

1、nginx

4、nginx的安裝(linux centos7)

2)安裝相關依賴和庫檔案  

# yum -y install gcc gcc-c++ autoconf automake   //

gcc、gcc-c++的庫檔案

# yum -y install pcre pcre-devel //

安裝nginx依賴包

# yum -y install zlib zlib-devel

5、解壓nginx.tar.gz包

# tar -zxvf /usr/local/nginx-1.13.0.tar.gz //

解壓tar包

6、在解壓包中執行./configure並安裝

# cd /usr/local/nginx-1.13.0/# ./configure 

# make

# make install //安裝

7、啟動nginx,停止用ps -ef|grep nginx 自己kill執行緒

# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

8、因為具體的配置在nginx.conf中,不建議直接在nginx.conf中修改,可以做備份處理  

# cp nginx.conf nginx.conf_bak

9、nginx的配置 vi nginx.conf 對比一下**修改

#設定低許可權使用者,為了安全而設定的

user nobody;

#工作衍生程序數

worker_processes 4;

#設定錯誤檔案存放路徑

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#設定pid存放路徑(pid是控制系統中重要檔案)

#pid logs/nginx.pid;

#設定最大連線數

#開啟gzip壓縮,開啟後,訪問網頁會自動壓縮

#gzip on;

#指定伺服器的名稱和引數

server

}}

10、執行方式同上面

11、本編部落格借鑑:

Nginx 的安裝與配置

linux centos 7.3 64位 nginx nginx 1.13.1 安裝目錄 usr local 3 openssl 若需要支援 https 協議 yum y install openssl yum y install openssl devel 1 解壓安裝包 tar z xv f n...

nginx安裝與配置

1 安裝前,需要安裝的軟體包 yum y install gcc gcc c autoconf automake yum y install zlib zlib devel openssl openssl devel pcre pcre devel 2 安裝nginx 3 啟動與停止nginx 啟動...

nginx安裝與配置

wget 0.tar gz2,安裝 tar zxf nginx 1.14 0.tar gzcd nginx 1.14 0.configure prefix usr local nginx make make install3,配置 1,在index後面新增index.php 2,去掉location...