在使用nginx部署.net core mvc的程式時,假如我使用的是5002埠,並且當訪問站點時如果未登入,則跳轉到登入頁面。可是最後卻發現跳轉的時候埠丟失了,那是因為我配置的是
proxy_set_header Host $host;
替換為下面就好了
proxy_set_header Host $host:$server_port;
原文連結 :https://www.xiandanplay.com/
在使用nginx部署.net core mvc的程式時,假如我使用的是5002埠,並且當訪問站點時如果未登入,則跳轉到登入頁面。可是最後卻發現跳轉的時候埠丟失了,那是因為我配置的是
proxy_set_header Host $host;
替換為下面就好了
proxy_set_header Host $host:$server_port;
原文連結 :https://www.xiandanplay.com/