mirror of
https://github.com/yusing/godoxy.git
synced 2025-07-22 04:14:04 +02:00
9 lines
256 B
Go
9 lines
256 B
Go
package autocert
|
|
|
|
const (
|
|
certBasePath = "certs/"
|
|
CertFileDefault = certBasePath + "cert.crt"
|
|
KeyFileDefault = certBasePath + "priv.key"
|
|
ACMEKeyFileDefault = certBasePath + "acme.key"
|
|
LastFailureFile = certBasePath + ".last_failure"
|
|
)
|