aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-01 16:03:27 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-01 16:03:27 -0400
commitfc788efa49e129eadbcc64a1b4fd7797e020d854 (patch)
tree7edb5e8266ebbaa5b18ee723edfe3fdb62bc21c6 /Emby.Server.Core
parentdbfb1fb3705f7d1f562f28ed0126933dd423f814 (diff)
add password to self signed cert
Diffstat (limited to 'Emby.Server.Core')
-rw-r--r--Emby.Server.Core/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs
index 05f6c4309..994b942e9 100644
--- a/Emby.Server.Core/ApplicationHost.cs
+++ b/Emby.Server.Core/ApplicationHost.cs
@@ -1138,7 +1138,7 @@ namespace Emby.Server.Core
// Generate self-signed cert
var certHost = GetHostnameFromExternalDns(ServerConfigurationManager.Configuration.WanDdns);
- var certPath = Path.Combine(ServerConfigurationManager.ApplicationPaths.ProgramDataPath, "ssl", "cert_" + (certHost + "1").GetMD5().ToString("N") + ".pfx");
+ var certPath = Path.Combine(ServerConfigurationManager.ApplicationPaths.ProgramDataPath, "ssl", "cert_" + (certHost + "2").GetMD5().ToString("N") + ".pfx");
var password = "embycert";
if (generateCertificate)