文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Linux Nginx配置nginx.conf效率很高

Linux Nginx配置nginx.conf效率很高

时间:2010-10-08  来源:mydear

Linux Nginx 还是比较常用的,于是我研究了一下Linux Nginx ,在这里拿出来和大家分享一下,希望对大家有用。Linux Nginx 已经是目前公认的效率很高的代理服务,同时可以用来做负载均衡。由于项目目前只有一台centOS的服务器,无法用来测试,所以打算找下Linux 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台服务器

配置Linux Nginx的nginx.conf

  1. http {}增加如下内容
  2. upstream sp.imichat.com {
  3. server 10.10.10.181:8080;
  4. server 10.10.10.181:8081;
  5. server 10.10.10.181:8082; }
  6. server {} 修改异侠信息:
  7. listen 80;
  8. server_name sp.imichat.com;
  9. #charset koi8-r;
  10. #access_log logs/host_access_log main;
  11. location / {
  12. proxy_pass http://sp.imichat.com;
  13. proxy_set_header Host $host;
  14. proxy_set_header X-Real-IP $remote_addr;
  15. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  16. }
  17. access_log logs/sp.imichat.com.log combined;
  18. [/code]

Linux Nginx启动181上的3个tomcat,修改tomcat首页加入端口信息,以用来清晰看到当前分配到那台tomcat启动Linux Nginx,访问 http://sp.imichat.com/可看到请求被发送到3台服务器。

Linux Nginx抓http包可看到request为

  1. GET / HTTP/1.1
  2. Host: sp.imichat.com
  3. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
  4. Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  5. Accept-Language: en-us,zh-cn;q=0.5
  6. Accept-Encoding: gzip,deflate
  7. Accept-Charset: gb2312,utf-8;q=0.7,*;q=0.7
  8. Keep-Alive: 300
  9. Connection: keep-alive
  10. Cookie: JSESSIONID=A75E09D2EBF769A7BD95195E29DE87DE; key=1227008000183;
  11. memberName=admin; memberType=%7C%u8D85%u7EA7%u7BA1%u7406%u5458%7C
  12. Pragma: no-cache
  13. Cache-Control: no-cache
  1. response:
  2. HTTP/1.1 200 OK
  3. Server: nginx/0.7.21-win32
  4. Date: Tue, 18 Nov 2008 12:12:33 GMT
  5. Content-Type: text/html
  6. Connection: keep-alive
  7. ETag: W/"8157-1227009260637"
  8. Last-Modified: Tue, 18 Nov 2008 11:54:20 GMT
  9. Content-Length: 8157

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载