mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
d36336a572
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
17 lines
314 B
Go
17 lines
314 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
const (
|
|
HTTPReadTimeout = 30 * time.Second
|
|
HTTPShutdownTimeout = 3 * time.Second
|
|
TLSALPN01ChallengeType = "TLS-ALPN-01"
|
|
HTTP01ChallengeType = "HTTP-01"
|
|
|
|
JSONLogFormat = "json"
|
|
TextLogFormat = "text"
|
|
|
|
KeepAliveInterval = 60 * time.Second
|
|
MaxHostnameLength = 255
|
|
)
|