Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax <michal@naiman.eu>2022-03-19 15:58:25 +0300
committerGitHub <noreply@github.com>2022-03-19 15:58:25 +0300
commitc3604a5e3cecd77de7934a06913f64d93523201a (patch)
tree716c9b44b4efa913ca7c3c2e58088c526839fe0f /Duplicati
parent2f3b0e83a0c3e5dbdd8ccba0a08e3623d64ca231 (diff)
Webserver SSL security increase
Diffstat (limited to 'Duplicati')
-rw-r--r--Duplicati/Server/WebServer/Server.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Server/WebServer/Server.cs b/Duplicati/Server/WebServer/Server.cs
index 0ab45ba54..ecaa668bb 100644
--- a/Duplicati/Server/WebServer/Server.cs
+++ b/Duplicati/Server/WebServer/Server.cs
@@ -162,7 +162,7 @@ namespace Duplicati.Server.WebServer
if (!certValid)
server.Start(listenInterface, p);
else
- server.Start(listenInterface, p, cert, System.Security.Authentication.SslProtocols.Tls11 | System.Security.Authentication.SslProtocols.Tls12, null, false);
+ server.Start(listenInterface, p, cert, System.Security.Authentication.SslProtocols.Tls12 | System.Security.Authentication.SslProtocols.Tls13, null, false);
m_server = server;
m_server.ServerName = string.Format("{0} v{1}", Library.AutoUpdater.AutoUpdateSettings.AppName, System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);