Fix the social sample port.

This commit is contained in:
Chris R 2017-01-19 13:37:04 -08:00
parent c64c5db02d
commit f2fd58d8c4
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ namespace SocialSample
if (string.IsNullOrEmpty(Environment.GetEnvironmentVariable("ASPNETCORE_PORT"))) if (string.IsNullOrEmpty(Environment.GetEnvironmentVariable("ASPNETCORE_PORT")))
{ {
// ANCM is not hosting the process // ANCM is not hosting the process
options.Listen(IPAddress.Loopback, 5000, listenOptions => options.Listen(IPAddress.Loopback, 44318, listenOptions =>
{ {
// Configure SSL // Configure SSL
var serverCertificate = LoadCertificate(); var serverCertificate = LoadCertificate();