學(xué)了兩天nginx支持ASP了。GOOGLE了無(wú)數(shù)頁(yè)終于知道nginx到底是怎么支持ASP啦。
大家一起分享:
#asp(aspx)支持,將客戶端的請(qǐng)求轉(zhuǎn)交給IIS
location ~* \.(asp|aspx|asa)$ {
root D:/wwroot;
index index.asp index.aspx;
proxy_pass http://127.0.0.1:88;
proxy_set_header X-Real-IP $remote_addr;
}
將上面這段放在nginx.conf里。范圍是在 你需要支持ASP站的Serer內(nèi) 那段里。其次就是開(kāi)啟IIS的站點(diǎn)。端口用88(可自行修改),站點(diǎn)指向要對(duì)應(yīng)nginx設(shè)置的站點(diǎn)。這樣才能支持。
下面是我找到的頁(yè)面的全文章,或許對(duì)你們也有用:
以下是nginx配置文件,有一點(diǎn)要注意,不管先裝或者后裝IIS,都需要修改IIS的默認(rèn)端口,然后相應(yīng)的修改配置文件里的IIS相關(guān)端口
#asp(aspx)支持,將客戶端的請(qǐng)求轉(zhuǎn)交給IIS
location ~* \.(asp|aspx|asa)$ {
root /host/wwwroot/www;
index index.asp index.aspx;
proxy_pass http://127.0.0.1:88;
proxy_set_header X-Real-IP $remote_addr;
}
#java(jsp)支持,將客戶端的請(qǐng)求轉(zhuǎn)交給resin
location ~* \.(jsp|do)$ {
root /host/wwwroot/www;
index index.jsp index.do;
proxy_pass http://127.0.0.1:8080;
proxy_set_header X-Real-IP $remote_addr;
}
#將客戶端的請(qǐng)求轉(zhuǎn)交給fastcgi
location ~ .*\.(php|php5|php4|shtml|xhtml|phtml|htm|html|shtml|shtm)?$ {
fastcgi_pass 127.0.0.1:9000;
include /host/nginx/conf/fastcgi_params;
}
目的是借助nginx的處理能力把php和靜態(tài)等頁(yè)面交給nginx處理,iis只負(fù)責(zé)處理asp和aspx相關(guān)內(nèi)容,resin只處理java相關(guān)內(nèi)容,所有內(nèi)容從nginx 80端口輸出