update packages
This commit is contained in:
parent
450a6f2796
commit
26c741ad03
4 changed files with 7 additions and 1 deletions
|
|
@ -66,6 +66,7 @@ internal class Program
|
|||
options.Timeout = 30000;
|
||||
options.Backlog = 128;
|
||||
|
||||
options.Compression = true;
|
||||
options.Encryption = Encryption.Tls12;
|
||||
options.Certificate = host.Configuration.GetValue<string?>(Appsettings.AgentServerCertificate) ?? throw new Exception($"{Appsettings.AgentServerCertificate} value not set (appsettings)");
|
||||
options.CertificatePassword = host.Configuration.GetValue<string?>(Appsettings.AgentServerCertificatePassword) ?? throw new Exception($"{Appsettings.AgentServerCertificatePassword} value not set (appsettings)");
|
||||
|
|
@ -104,6 +105,7 @@ internal class Program
|
|||
options.Timeout = 30000;
|
||||
options.Backlog = 128;
|
||||
|
||||
options.Compression = true;
|
||||
options.Encryption = Encryption.Tls12;
|
||||
options.Certificate = host.Configuration.GetValue<string?>(Appsettings.WebServerCertificate) ?? throw new Exception($"{Appsettings.WebServerCertificate} value not set (appsettings)");
|
||||
options.CertificatePassword = host.Configuration.GetValue<string?>(Appsettings.WebServerCertificatePassword) ?? throw new Exception($"{Appsettings.WebServerCertificatePassword} value not set (appsettings)");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue