Browse Source

fix: 解决从网站上传的证书状态显示异常的问题 (#5869)

Refs https://github.com/1Panel-dev/1Panel/issues/5867
pull/5906/head
zhengkunwang 4 months ago committed by GitHub
parent
commit
68922676fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      backend/app/service/website.go

1
backend/app/service/website.go

@ -910,6 +910,7 @@ func (w WebsiteService) OpWebsiteHTTPS(ctx context.Context, req request.WebsiteH
websiteSSL.Provider = constant.Manual websiteSSL.Provider = constant.Manual
websiteSSL.PrivateKey = privateKey websiteSSL.PrivateKey = privateKey
websiteSSL.Pem = certificate websiteSSL.Pem = certificate
websiteSSL.Status = constant.SSLReady
res.SSL = websiteSSL res.SSL = websiteSSL
} }

Loading…
Cancel
Save