mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-18 07:13:50 +01:00
9 lines
203 B
Go
9 lines
203 B
Go
package autocert
|
|
|
|
const (
|
|
certBasePath = "certs/"
|
|
CertFileDefault = certBasePath + "cert.crt"
|
|
KeyFileDefault = certBasePath + "priv.key"
|
|
ACMEKeyFileDefault = certBasePath + "acme.key"
|
|
)
|