mirror of
https://github.com/nxshock/gonx.git
synced 2025-07-01 23:53:35 +05:00
11 lines
246 B
Go
11 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/"
|
|
)
|