安裝make:
yum -y install gcc automake autoconf libtool make
安裝gcc:
yum -y install gcc gcc-c++
#nginx依賴的3個庫的作用
gzip(解壓縮)http模組需要 zlib 庫
rewrite模組和解析正規表示式需要 pcre 庫
ssl 功能需要openssl庫
#yum -y install pcre pcre-devel
#yum -y install zlib zlib-devel
#yum -y install openssl openssl-devel
wget
安裝ssl: ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make && make install
zlib、pcre的編譯: #./configure
openssl的編譯: #./config
#make && make install
ps:殺死80埠
fuser -k 80/tcp
一、啟動停止命令
/usr/local/nginx/sbin目錄下
1.啟動
./nginx
2.停止
./nginx -s stop
3.重啟
./nginx -s reload
二、配置
nginx配置詳細:
user nginx;
#建議設定為cpu核數,這裡為4核cpu,開啟4個程序
worker_processes 4;
worker_cpu_affinity 0001 0010 0100 1000;
#配置nginx worker程序最大開啟檔案數
worker_rlimit_nofile 65535;
error_log logs/error.log;
pid logs/nginx.pid;
events
server
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...