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

以前使用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"> 
  1. <Context path="/weixin/项目名" docBase="webapps" reloadable="true"/>  
      </Host>

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

源码:源码链接



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值