From 68922676fc058526f49d341e608a5703df4feb39 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Fri, 19 Jul 2024 15:41:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E4=BB=8E=E7=BD=91?= =?UTF-8?q?=E7=AB=99=E4=B8=8A=E4=BC=A0=E7=9A=84=E8=AF=81=E4=B9=A6=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=98=BE=E7=A4=BA=E5=BC=82=E5=B8=B8=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20(#5869)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs https://github.com/1Panel-dev/1Panel/issues/5867 --- backend/app/service/website.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/service/website.go b/backend/app/service/website.go index 48cfa9d4b..8e219de2c 100644 --- a/backend/app/service/website.go +++ b/backend/app/service/website.go @@ -910,6 +910,7 @@ func (w WebsiteService) OpWebsiteHTTPS(ctx context.Context, req request.WebsiteH websiteSSL.Provider = constant.Manual websiteSSL.PrivateKey = privateKey websiteSSL.Pem = certificate + websiteSSL.Status = constant.SSLReady res.SSL = websiteSSL }