找回密码
 开放注册

QQ登录

只需一步,快速开始

微信登录

微信扫码,快速开始

通达OA官网网站
搜索
查看: 2309|回复: 3

[猪蹄煮不烂教程]通达自带nginx.conf,配置反向代理ASP

[复制链接]

18

主题

73

回帖

247

牛毛

游客

积分
335
发表于 2014-3-15 17:33:40 | 显示全部楼层 |阅读模式
本帖最后由 xpmasterjp 于 2014-3-29 14:49 编辑

通达自带的nginx,怎么配置才能支持ASP呢?
1、以下代码加到server { 。。。。。。之间}
# 反向代理IIS运行asp程序
location ~* \.(asp|aspx|asa)$ {
root /host;
index index.asp index.aspx;
proxy_pass http://127.0.0.1:80;
proxy_set_header X-Real-IP $remote_addr;
}

2、IIS配置路径 D:\MYOA\WEBROOT  端口:80  只要不和apache或者nginx端口冲突就行。3、以下是server端完整配置可以参考
server {
        #Nginx端口
        listen   88;
        server_name  localhost;
        root   D:\WEB\webroot;
        index  index.php index.html index.htm index.asp;
        
        include   common.conf;

        #charset gbk;
        #access_log  logs/host.access.log  main;
        #error_page  404              /404.html;

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

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        location ~* (\.php$|/2062/|/2061/) {
            #Apache地址和端口
            proxy_pass   http://localhost:83;
            include   proxy.conf;
        }
        # 反向代理IIS运行asp程序
        location ~* \.(asp|aspx|asa)$ {
        root /host;
        index index.asp index.aspx;
        proxy_pass http://127.0.0.1:80;
        proxy_set_header X-Real-IP $remote_addr;
        }
4、访问http://127.0.0.1:88/car  效果等同于http://127.0.0.1:80/car

18

主题

73

回帖

247

牛毛

游客

积分
335
 楼主| 发表于 2014-3-15 18:01:49 | 显示全部楼层
本帖最后由 xpmasterjp 于 2014-3-29 14:50 编辑

自己研究实现了IIS反向代理和apache反向代理

18

主题

73

回帖

247

牛毛

游客

积分
335
 楼主| 发表于 2014-3-17 16:44:09 | 显示全部楼层
管理员不回答! 我自己搞定了!

IIS配置路径:    D:\MYOA\WEBROOT\CAR     端口:80
ASP文件存放路径:D:\MYOA\webroot\car\car
php 由ngnix直接运行,ASP代理给IIS80端口运行。
反向代理配置代码:
location ~* \.(asp|aspx|asa)$ {
        root /host/car;
        index index.asp index.aspx;
        proxy_pass http://127.0.0.1:80;
        proxy_set_header X-Real-IP $remote_addr;
        }

评分

参与人数 1牛毛 +5 收起 理由
通达邹毅 + 5 赞一个!

查看全部评分

18

主题

73

回帖

247

牛毛

游客

积分
335
 楼主| 发表于 2014-3-17 18:11:22 | 显示全部楼层
通过一些设置,还可以设置负载均衡。自己做集群就行了!目前还在研究。
您需要登录后才可以回帖 登录 | 开放注册

本版积分规则

咨询电话:400 818 0505 通达OA,国内协同管理软件行业内唯一的央企单位,中国协同OA软件的领跑者,优秀协同办公解决方案供应商

帮助|Archiver|小黑屋|通信管理局专项备案号:[2008]238号|由NB5牛论坛提供技术支持NB5用户社区 ( 皖ICP备08004151号;皖公网安备34010402700514号 )

GMT+8, 2024-12-24 09:32 , Processed in 0.124105 second(s), 30 queries , Yac On.

Powered by Discuz

Copyright © 2001-2024, 北京通达信科科技有限公司.

快速回复 返回顶部 返回列表