SSL dev server & publish fixes

This commit is contained in:
Fergal Moran
2017-12-16 01:48:51 +00:00
parent dc0c574ce9
commit faf24810a0
12 changed files with 130 additions and 17 deletions

View File

@@ -18,8 +18,6 @@ namespace PodNoms.Api {
WebHost.CreateDefaultBuilder (args)
.UseStartup<Startup> ()
.UseKestrel (options => {
options.Listen (IPAddress.Any, 5000, listenOptions =>
listenOptions.UseHttps ("localhost.pfx"));
options.Limits.MaxRequestBodySize = 1073741824;
})
.Build ();