關於Nginx設置端口號,在Asp.net 獲取不到的,解決辦法

不知道你有沒有遇到過這樣的問題,網站訪客多起來後,內心非常高興,加上了Nginx反向代理,出問題了html

原來是這麼寫的:app

 

Request.Url.ToString()

輸出是這樣的:網站

http://www.zhyj2013.com:6038/Default/Indexspa

無緣無故多出個端口號代理

Nginx是這樣配置的code

server {
        listen       80;
        server_name  www.zhyj2013.com;
    
        location / {
            root   html;
            index  index.html index.htm;
        proxy_pass  http://localhost:6038;
        proxy_set_header Host $http_host:$server_port;
        proxy_set_header X-Real-IP $remote_addr;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }

 

 你們都是這樣配置的,沒有什麼問題,網上也找不到Asp.Net解決問題的方法,最後我翻看了System.Web.dll  發現他讀取appSetting節點 aspnet:UseHostHeaderForRequestUrl 子節點,因而,在項目的WebConfig加上配置,好了server

<appSettings>
    <add key="aspnet:UseHostHeaderForRequestUrl" value="true"/>
</appSettings>

 

 再刷新htm

輸出是這樣的:blog

http://www.zhyj2013.com/Default/Indexrem

 

至此,問題解決。

從業十多年,居然不知道這樣的問題,仍是涉獵不夠。

相關文章
相關標籤/搜索