mirror of
https://github.com/nxshock/gonx.git
synced 2024-11-27 17:11:01 +05:00
12 lines
246 B
Go
12 lines
246 B
Go
|
package main
|
||
|
|
||
|
const (
|
||
|
defaultConfigPath = "/etc/gonx.conf"
|
||
|
defaultTlsKeysPath = "/etc/letsencrypt/live"
|
||
|
|
||
|
defaultCertFileName = "fullchain.pem"
|
||
|
defaultKeyFileName = "privkey.pem"
|
||
|
|
||
|
defaultAcmeChallengePath = "/.well-known/acme-challenge/"
|
||
|
)
|