浏览 5261 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-07-13
最后修改:2011-07-14
nginwix-1.0.4 下载地址 http://nginx.org/download/nginx-1.0.4.zip 第一步 下载之后解压就能用 解压到c:\nginx-1.0.4 打开conf下ngnix.conf文件 在#gzip on;行下加入 upstream localhost { #ip_hash; #8080 8081 tomcat端口 这里两个为例 server localhost:8080; server localhost:8081; } location / { root html; index index.html index.html; } 改为 location / { root html; index index.html index.htm; proxy_pass http://localhost; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 10m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; } 第二步 改tomcat端口 conf文件下server.xml修改以下两处端口即可 <Server port="18005" shutdown="SHUTDOWN"> 我这里前面加个1 <Connector port="8081" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> 8080改为8081 另一个tomcat端口不要冲突即可 第三步 启动 两个tomcat 然后双击nginx-1.0.4文件夹下nginx.exe即可 访问浏览器 http://localhost 看见tomcat猫的主页,完成负载。。。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-12-09
按照楼主的步骤一步步搭建起来,
但是输入 http://localhost/ 他怎么老是 连到我的tomcat2上呢。 |
|
返回顶楼 | |
发表时间:2011-12-09
这个无所谓,根据你自身机器性能有关。详细的可以看下nginx文档,内部有配置方式
我用的是默认的 |
|
返回顶楼 | |