2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00

fix: 签发证书不强制 OCSP 装订

This commit is contained in:
耗子
2024-03-04 18:34:23 +08:00
parent 1a82279304
commit 35c998f402
2 changed files with 8 additions and 7 deletions

View File

@@ -17,11 +17,11 @@ type Container struct {
client *client.Client
}
func NewContainer(sock string) *Container {
if sock == "" {
sock = "/run/podman/podman.sock"
func NewContainer(sock ...string) *Container {
if len(sock) == 0 {
sock[0] = "/run/podman/podman.sock"
}
cli, _ := client.NewClientWithOpts(client.WithHost("unix://"+sock), client.WithAPIVersionNegotiation())
cli, _ := client.NewClientWithOpts(client.WithHost("unix://"+sock[0]), client.WithAPIVersionNegotiation())
return &Container{
client: cli,
}

View File

@@ -103,8 +103,9 @@ func (c *Client) UseHTTP(path string) error {
// ObtainSSL 签发 SSL 证书
func (c *Client) ObtainSSL(domains []string) (certificate.Resource, error) {
request := certificate.ObtainRequest{
Domains: domains,
Bundle: true,
Domains: domains,
Bundle: true,
MustStaple: false,
}
certificates, err := c.Client.Certificate.Obtain(request)
@@ -124,7 +125,7 @@ func (c *Client) RenewSSL(certUrl string) (certificate.Resource, error) {
certificates, err = c.Client.Certificate.RenewWithOptions(*certificates, &certificate.RenewOptions{
Bundle: true,
MustStaple: true,
MustStaple: false,
})
if err != nil {
return certificate.Resource{}, err