Skip to content

Commit

Permalink
Re-enable TLS 1.0
Browse files Browse the repository at this point in the history
Re-enable TLS 1.0 for Server 2008
Fixes #267
Fixes #242
  • Loading branch information
rkerber committed Jul 30, 2016
1 parent 66b24cd commit 439658c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion letsencrypt-win-simple/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private static void Main(string[] args)
{
CreateLogger();

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

if (!TryParseOptions(args))
return;
Expand Down

0 comments on commit 439658c

Please sign in to comment.