Last active
September 16, 2018 17:04
-
-
Save allanchua101/014984fb8f9103ef427fc63d1ba818ce to your computer and use it in GitHub Desktop.
Configuring Program.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static IWebHost BuildWebHost(string[] args) => | |
| WebHost.CreateDefaultBuilder(args) | |
| .UseKestrel(options => | |
| { | |
| // Set properties and call methods on options | |
| }) | |
| .UseUrls("http://0.0.0.0:80") | |
| .UseStartup<Startup>() | |
| .Build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment