您好,登錄后才能下訂單哦!
這篇文章主要介紹“CentOS Nginx服務器怎么配置nginx.conf”,在日常操作中,相信很多人在CentOS Nginx服務器怎么配置nginx.conf問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”CentOS Nginx服務器怎么配置nginx.conf”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
在向大家詳細介紹CentOS Nginx之前,首先讓大家了解下CentOS Nginx,然后全面介紹CentOS Nginx,希望對大家有用。CentOS Nginx 已經是目前公認的效率很高的代理服務,同時可以用來做負載均衡。
由于項目目前只有一臺CentOS Nginx 的服務器,無法用來測試,所以打算找下Nginx windows下版本;http://www.kevinworthington.com/nginx/win32/以上為win32的版本用戶訪問 sp.imichat.com 均衡到 10.10.10.181:8080; 10.10.10.181:8081; 10.10.10.181:8082; 這3臺服務器CentOS Nginx
配置CentOS Nginx 的nginx.conf
http {}增加如下內容 upstream sp.imichat.com {server 10.10.10.181:8080; server 10.10.10.181:8081; server 10.10.10.181:8082; } server {} 修改異俠信息: listen 80; server_name sp.imichat.com; #charset koi8-r; #access_log logs/host_access_log main; location / { proxy_pass http://sp.imichat.com; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } access_log logs/sp.imichat.com.log combined; [/code]
啟動181上的3個tomcat,修改tomcat首頁加入端口信息,以用來清晰看到當前分配到那臺tomcat啟動Nginx,訪問 http://sp.imichat.com/可看到請求被發送到3臺服務器。
抓http包可看到request為
GET / HTTP/1.1 Host: sp.imichat.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,zh-cn;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: gb2312,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Cookie: JSESSIONID=A75E09D2EBF769A7BD95195E29DE87DE; key=1227008000183; memberName=admin; memberType=%7C%u8D85%u7EA7%u7BA1%u7406%u5458%7C Pragma: no-cache Cache-Control: no-cache
response:
HTTP/1.1 200 OK Server: nginx/0.7.21-win32 Date: Tue, 18 Nov 2008 12:12:33 GMT Content-Type: text/html Connection: keep-alive ETag: W/"8157-1227009260637" Last-Modified: Tue, 18 Nov 2008 11:54:20 GMT Content-Length: 8157
到此,關于“CentOS Nginx服務器怎么配置nginx.conf”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。