Skip to content

Commit

Permalink
fix(ssh): remove wildcard on certbot certificate generation
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybarreto authored and gustavosbarreto committed Dec 10, 2024
1 parent 0dd64d7 commit 5e1a324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway/certbot.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (cb *CertBot) generateCertificate() {
"--preferred-challenges", "http",
"-n",
"-d",
fmt.Sprintf("*.%s", cb.domain),
cb.domain,
)
if cb.staging {
cmd.Args = append(cmd.Args, "--staging")
Expand Down

0 comments on commit 5e1a324

Please sign in to comment.