中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

nginx安裝與配置

從今開始,學(xué)nginx #安裝pcre [root@svr3~]#tar-xjfpcre-8.02.tar.bz2-C/usr/src/ [root@svr3~]#cd/usr/src/pcre-8.02/ [root@svr3pcre-8.02]#./configure&&make&&makeinstall #安裝nginx [root@svr3~]#useradd-M-s/sbin/nologinnginx [root@svr3~]#tar-xzfnginx-1.0.5.tar.gz-C/usr/src/ [root@svr3~]#cd/usr/src/nginx-1.0.5/ [root@svr3nginx-1.0.5]#./configure--prefix=/usr/local/nginx--user=nginx--group=nginx [root@svr3nginx-1.0.5]#make&&makeinstall [root@svr3~]#vim/usr/local/nginx/conf/nginx.conf +++++++++++++++相關(guān)說明+++++++++++++++++++++++++++++ usernginx;#用戶使用nginx worker_processes1;#程序啟動(dòng)后,初始化的進(jìn)程數(shù);內(nèi)核多的話,可根據(jù)內(nèi)核數(shù)量設(shè)置。 #error_loglogs/error.log; #error_loglogs/error.lognotice; error_loglogs/error.loginfo;#設(shè)置錯(cuò)誤日志的記錄級(jí)別 pidlogs/nginx.pid;#重啟關(guān)閉nginx時(shí),需要知道pid文件。 worker_rlimit_nofile51000; # events{ worker_connections50000;#允許的連接數(shù),我這里設(shè)置50000個(gè)。 } http{ includemime.types; default_typeapplication/octet-stream; #log_formatmain\'$remote_addr-$remote_user[$time_local]"$request"\' #\'$status$body_bytes_sent"$http_referer"\'

創(chuàng)新互聯(lián)長期為超過千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為扎蘭屯企業(yè)提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站制作,扎蘭屯網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。

#\'"$http_user_agent""$http_x_forwarded_for"\'; #access_loglogs/access.logmain; sendfileon; tcp_nopushon; #keepalive_timeout0; keepalive_timeout30; gzipon;#允許gzip壓縮。 gzip_buffers 32 4k; gzip_comp_level 1; gzip_min_length 1024; gzip_types text/html text/css application/xml; server{ listen80; server_namelocalhost; #charsetkoi8-r; access_loglogs/host.access.logmain; location/{ roothtml;#目錄 indexindex.htmlindex.htm;#index類型 } #error_page404/404.html; #redirectservererrorpagestothestaticpage/50x.html # error_page500502503504/50x.html; location=/50x.html{ roothtml; } #這里是關(guān)于轉(zhuǎn)發(fā)的部分 #proxythePHPscriptstoApachelisteningon127.0.0.1:80 # #location~.php${ #proxy_passhttp://127.0.0.1; #} #fastcgi的部分 #passthePHPscriptstoFastCGIserverlisteningon127.0.0.1:9000 # #location~.php${ #roothtml; #fastcgi_pass127.0.0.1:9000; #fastcgi_indexindex.php; #fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name; #includefastcgi_params; #} #denyaccessto.htaccessfiles,ifApache\'sdocumentroot #concurswithnginx\'sone # #location~/.ht{ #denyall; #} } #anothervirtualhostusingmixofIP-,name-,andport-basedconfiguration 虛擬主機(jī)的部分 } +++++++++++++++++++++++++++++++++++++++++++++ 現(xiàn)在就配置一臺(tái)主機(jī),改了以下內(nèi)容: server{ listen80; server_namesvr3.labexam.com10.1.1.30; #charsetkoi8-r; access_loglogs/w1.access.logcombined; location/{ root/var/www/w1; indexindex.htmlindex.htm; } #看了下日志 [root@svr3nginx]#tail/usr/local/nginx/logs/w1.access.log 10.1.1.8--[15/Aug/2011:02:21:50+0800]"GET/HTTP/1.1"2008"-""Opera/9.80(WindowsNT5.1;U;zh-cn)Presto/2.9.168Version/11.50" 10.1.1.8--[15/Aug/2011:02:21:50+0800]"GET/favicon.icoHTTP/1.1"404142"http://svr3.labexam.com/""Opera/9.80(WindowsNT5.1;U;zh-cn)Presto/2.9.168Version/11.50" ===>如何啟動(dòng)nginx?<假定nginx安裝在/usr/local/nginx中> 方法1、執(zhí)行/usr/local/nginx/sbin/nginx-t檢查配置文件是否有誤!或是直接執(zhí)行/usr/local/nginx/sbin/nginx 如果有多個(gè)配置文件可以使用指定的配置文件啟動(dòng): #/usr/local/nginx/sbin/nginx-c/usr/local/nginx/conf/nginx.conf ===>nginx的信號(hào)控制: TERM,INT快速關(guān)閉 QUIT從容關(guān)閉 HUP重啟,重新加載配置文件 USR1重啟打開日志,在切割日志時(shí)用途大 USR2平滑升級(jí)可執(zhí)行程序 WINCH從容關(guān)閉進(jìn)程

本文出自 “潛入技術(shù)的海洋” 博客,請(qǐng)務(wù)必保留此出處http://myhat.blog.51cto.com/391263/639564

文章名稱:nginx安裝與配置
分享URL:http://www.rwnh.cn/article4/cjojie.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、企業(yè)建站、網(wǎng)站建設(shè)、面包屑導(dǎo)航、商城網(wǎng)站、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
深圳市| 东丰县| 呼玛县| 离岛区| 黔东| 休宁县| 金湖县| 杭州市| 鸡泽县| 罗甸县| 明水县| 昌都县| 三江| 忻州市| 惠州市| 隆德县| 定边县| 英吉沙县| 铜梁县| 应用必备| 和硕县| 浙江省| 望江县| 孙吴县| 台东市| 大悟县| 平江县| 怀化市| 讷河市| 江山市| 布拖县| 瓦房店市| 哈尔滨市| 离岛区| 哈密市| 扎兰屯市| 开封市| 闸北区| 萍乡市| 天镇县| 宜君县|