您的位置:首页 > 运维架构 > Tomcat

使用ngin实现tomcat6和iis共用80端口

2015-11-08 14:28 423 查看
以前使用isapi_redirect实现tomcat7和iis共用80端头过程繁琐,且不容易实现,现在使用nginx来实现这个功能,比较简单。

环境:tomcat6+nginx1.8.0+win7+jdk6.0

说明:1)、文章最后有配置好的源码。

2)、主要是实现一个用java写的微信和一个asp网站的共用一台服务器。

3)、说明:所有以ip+weixin开头(例如:www.xxx.com/weixin)全部转发到tomcat的服务器上,否则转发到iis。

4)、 假设tomcat的端口设置为8080,iis的设置为81

1、下载nginx1.8.0,配置conf/nginx.conf如下(注意: 至于 proxy_pass http://localhost:8080; 是不需要修改为ip地址的):

#user nobody;

worker_processes 1;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid;

events {

worker_connections 1024;

}

http {

include mime.types;

default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '

# '$status $body_bytes_sent "$http_referer" '

# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;

#tcp_nopush on;

#keepalive_timeout 0;

keepalive_timeout 65;

#gzip on;

server {

listen 80;

server_name 对外的ip或者域名;

#charset koi8-r;

#access_log logs/host.access.log main;

location ^~/weixin {

proxy_pass http://localhost:8080;
#index index.html index.htm;

#Proxy Settings

}



location / {

proxy_pass http://localhost:81;
#index index.html index.htm;

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ \.php$ {

# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ \.php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

# deny all;

#}

}

# another virtual host using mix of IP-, name-, and port-based configuration

#

#server {

# listen 8000;

# listen somename:8080;

# server_name somename alias another.alias;

# location / {

# root html;

# index index.html index.htm;

# }

#}

# HTTPS server

#

#server {

# listen 443 ssl;

# server_name localhost;

# ssl_certificate cert.pem;

# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;

# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;

# ssl_prefer_server_ciphers on;

# location / {

# root html;

# index index.html index.htm;

# }

#}

}

2、配置tomcat6的conf/server.xml

说明:红色注释非常关键,因为配置将/weixin加在了Host name="localhost/weixin" 出现了很大的麻烦,例如:当在servlet中重定向时没有问题,但是如果转发,会直接相对于localhost(其实是相对于ip,因为我们在nginx中进行了配置)进行转发,出现错误。

在<Host></Host>内加入如下配置

<Host name="localhost" appBase="webapps"

unpackWARs="true" autoDeploy="true"

xmlValidation="false" xmlNamespaceAware="false">

<Context path="/weixin/项目名" docBase="webapps" reloadable="true"/>

</Host>

3、最后,nginx的应用远不止于此,更多应用于分布式和高性能服务器配置等,感兴趣可以多多了解。这里只是使用它实现了简单的共用端口,没有更多的考虑性能等问题。

源码:源码链接
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: