如何使用ASP.NET Core + Kestrel + Nginx的自定义域

时间:2018-06-14 16:32:44

标签: c# nginx asp.net-core dns kestrel

我已将我的应用程序部署到我的虚拟linux机器上,一切正常。

我已将域重定向到我的ip,它运行正常。 问题是当它将我的域重定向到我的linux机器ip时,url显示我的ip而不是域。

这是我的Nginx文件:

Intent intent = new Intent(this, SecondActivity.class);
startActivity(intent);

这是我的Program.cs文件:

server {
listen 80;

server_name mydomain.co www.mydomain.co *.mydomain.co;

#return 302 http://www.mydomain.co;

location / {
    proxy_pass http://localhost:54662;
    proxy_http_version 1.1;
    proxy_set_header   Upgrade $http_upgrade;
    proxy_set_header   Connection keep-alive;
    proxy_set_header   Host $host;
    proxy_cache_bypass $http_upgrade;
    proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header   X-Forwarded-Proto $scheme;
    }
}

Heres goDaddy成立: Domain to IP redirection

0 个答案:

没有答案