DotNet Core 2 Deployment post-extranet IP access

Source: Internet
Author: User
Tags dotnet

After you deploy the dotnet Core2.0 project on Ubuntu and run it, you can use localhost:5000 to access it.

But if you use an extranet to access it, you can't.

At this time there are two solutions, the first is to use Nginx Proxy to achieve access, the other is to modify the program's Program.cs.

The second solution is described here.

 Public Static Iwebhost buildwebhost (string[] args) =    webhost.createdefaultbuilder (args)        //  If you do not configure the following information, it will result in the inability to directly access // of course not the following can be configured with Nginx, but personally feel too cumbersome        . Useurls ("http://*:5000")        . Usestartup<Startup>()        . Build ();

This time you can use the external network + port number to access the ~

DotNet Core 2 Deployment post-extranet IP access

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.