fix: use the correct port. this should really be in a config file

This commit is contained in:
Oliver Booth 2023-08-12 20:34:00 +01:00
parent a6a0adc419
commit 5ecd915d72
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ builder.Services.AddSingleton<IUserService, UserService>();
builder.Services.AddRazorPages().AddRazorRuntimeCompilation();
builder.Services.AddControllersWithViews();
builder.WebHost.AddCertificateFromEnvironment(2846, 5050);
builder.WebHost.AddCertificateFromEnvironment(2856, 5050);
WebApplication app = builder.Build();