mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
8 lines
203 B
Go
8 lines
203 B
Go
package autocert
|
|
|
|
const (
|
|
certBasePath = "certs/"
|
|
CertFileDefault = certBasePath + "cert.crt"
|
|
KeyFileDefault = certBasePath + "priv.key"
|
|
ACMEKeyFileDefault = certBasePath + "acme.key"
|
|
)
|