真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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;#程序啟動后,初始化的進(jìn)程數(shù);內(nèi)核多的話,可根據(jù)內(nèi)核數(shù)量設(shè)置。 #error_loglogs/error.log; #error_loglogs/error.lognotice; error_loglogs/error.loginfo;#設(shè)置錯誤日志的記錄級別 pidlogs/nginx.pid;#重啟關(guān)閉nginx時,需要知道pid文件。 worker_rlimit_nofile51000; # events{ worker_connections50000;#允許的連接數(shù),我這里設(shè)置50000個。 } 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)隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為扎蘭屯企業(yè)提供專業(yè)的成都做網(wǎng)站、成都網(wǎng)站制作,扎蘭屯網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(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 虛擬主機的部分 } +++++++++++++++++++++++++++++++++++++++++++++ 現(xiàn)在就配置一臺主機,改了以下內(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" ===>如何啟動nginx?<假定nginx安裝在/usr/local/nginx中> 方法1、執(zhí)行/usr/local/nginx/sbin/nginx-t檢查配置文件是否有誤!或是直接執(zhí)行/usr/local/nginx/sbin/nginx 如果有多個配置文件可以使用指定的配置文件啟動: #/usr/local/nginx/sbin/nginx-c/usr/local/nginx/conf/nginx.conf ===>nginx的信號控制: TERM,INT快速關(guān)閉 QUIT從容關(guān)閉 HUP重啟,重新加載配置文件 USR1重啟打開日志,在切割日志時用途大 USR2平滑升級可執(zhí)行程序 WINCH從容關(guān)閉進(jìn)程

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


名稱欄目:nginx安裝與配置
文章網(wǎng)址:http://weahome.cn/article/cjojie.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部