關(guān)于nginx編譯安裝
作者:蜂巢建站 時(shí)間:2017-06-24 14:11:11 點(diǎn)擊:31995
解決依賴包openssl安裝,命令:
sudo apt-get install openssl libssl-dev
解決依賴包pcre安裝,命令:
sudo apt-get install libpcre3 libpcre3-dev
解決依賴包zlib安裝,命令:
sudo apt-get install zlib1g-dev
進(jìn)入nginx解壓文件里面:
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_module
make && make
完成安裝。
這里要說(shuō)http_stub_module主要是用來(lái)測(cè)試nginx狀態(tài)的
locatio /nginx-status {
stub_status on;
access_log off;
}