From 247acfa623ea9c72f6e6680a187f035a1547ddea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Moreau?= Date: Tue, 22 Jul 2025 16:30:19 -0400 Subject: [PATCH] minor container fixes --- package/Linux/entrypoint.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/Linux/entrypoint.ps1 b/package/Linux/entrypoint.ps1 index d91b1462b..6202bd11b 100644 --- a/package/Linux/entrypoint.ps1 +++ b/package/Linux/entrypoint.ps1 @@ -192,9 +192,10 @@ if ($WebScheme -eq 'https' -and $Arguments = @( "req", "-x509", "-nodes", "-newkey", "rsa:2048", - "-keyout", $PrivateKeyFile, - "-out", $CertificateFile, + "-keyout", $TlsPrivateKeyFile, + "-out", $TlsCertificateFile, "-subj", "/CN=$Hostname", + "-addext", "subjectAltName=DNS:$Hostname", "-days", "1825" )