本篇文章為大家展示了怎樣全面解析安裝Nginx的過(guò)程,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比畢節(jié)網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式畢節(jié)網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋畢節(jié)地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴。
安裝Nginx的時(shí)候有需要小技巧和小竅門。掌握好這些就能更好的使用相關(guān)的Nginx服務(wù)器,下面我們就來(lái)看看有關(guān)于安裝Nginx的相關(guān)問(wèn)題介紹。由于服務(wù)器apache抗不住目前的并發(fā).加上前端squid配置后。
問(wèn)題依然無(wú)法解決.而頁(yè)面程序大部分是動(dòng)態(tài).無(wú)法使用fastcgi來(lái)處理.因此想使用Nginx做為反向代理apache.整個(gè)配置安裝過(guò)程很簡(jiǎn)單.在考慮高并發(fā)的情況下,在安裝前就做了些優(yōu)化.目前配置能抗住3000以上并發(fā).好像不是特別大哦?呵~~ 但足以~~ 只是還有少量499問(wèn)題..期待有人跟我討論解決
安裝Nginx過(guò)程
1 建立用戶及組
/usr/sbin/groupadd www
/usr/sbin/useradd -g www www
2 安裝pcre 讓安裝Nginx支持rewrite 方便以后所需
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.gz
tar zxvf pcre-7.8.tar.gz
cd pcre-7.8/
./configure
make && make install
3 安裝Nginx
wget http://sysoev.ru/ nginx /nginx-0.7.58.tar.gz
tar zxvf nginx-0.7.58.tar.gz
cd nginx-0.7.58/
./configure --user=www --group=www --prefix=/usr/local/
webserver/nginx --with-http_stub_status_module
--with-http_ssl_module --with-cc-opt='-O2'
--with-cpu-opt=opteronmake && make install
注意上文中的--with-cc-opt='-O2' --with-cpu-opt=opteron 這是編譯器優(yōu)化,目前最常用的是-02 而不是3.后面對(duì)應(yīng)CPU的型號(hào),可參照:http://wiki.gentoo.tw/index.php/HOWTO_CFLAG
配置及優(yōu)化配置文件
Nginx.conf 配置文件:
user www www;
worker_processes 4;
# [ debug | info | notice | warn | error | crit ]
error_log /usr/local/webserver/nginx/logs/nginx_error.log
crit;pid /usr/local/webserver/nginx/nginx.pid;
#Specifies the value for maximum file descriptors that
can be opened by this process.worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 51200;
}
http
{
include mime.types;
default_type application/octet-stream;
source_charset GB2312;
server_names_hash_bucket_size 256;
client_header_buffer_size 256k;
large_client_header_buffers 4 256k;
#size limits
client_max_body_size 50m;
client_body_buffer_size 256k;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
#參數(shù)都有所調(diào)整.目的是解決代理過(guò)程中出現(xiàn)的一些502 499錯(cuò)誤
sendfile on;
tcp_nopush on;
keepalive_timeout 120; #參數(shù)加大,以解決做代理時(shí)502錯(cuò)誤
tcp_nodelay on;
include vhosts/upstream.conf;
include vhosts/bbs.linuxtone.conf;
}
上述內(nèi)容就是怎樣全面解析安裝Nginx的過(guò)程,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。