Skip to content

Instantly share code, notes, and snippets.

@allanchua101
Last active September 16, 2018 17:04
Show Gist options
  • Save allanchua101/014984fb8f9103ef427fc63d1ba818ce to your computer and use it in GitHub Desktop.
Save allanchua101/014984fb8f9103ef427fc63d1ba818ce to your computer and use it in GitHub Desktop.
Configuring Program.cs
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