-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathProgram.cs
35 lines (32 loc) · 1.06 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
using System.Security.Cryptography.X509Certificates;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.AspNetCore.Server.Kestrel.Https;
namespace LaTeXAPI
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
{
return WebHost.CreateDefaultBuilder(args).UseUrls("https://*:5002")
.UseKestrel(delegate (KestrelServerOptions option)
{
option.ConfigureHttpsDefaults(delegate (HttpsConnectionAdapterOptions i)
{
i.ServerCertificate = new X509Certificate2("C:\\work\\zs.pfx", "192781");
});
})
.UseDefaultServiceProvider(options =>
{
options.ValidateScopes = false;
})
.UseStartup<Startup>();
}
}
}