2020-09-09 18:53:53 +08:00
|
|
|
package teaconst
|
|
|
|
|
|
|
|
|
|
const (
|
2024-04-30 19:09:57 +08:00
|
|
|
Version = "1.3.8"
|
2020-09-09 18:53:53 +08:00
|
|
|
|
|
|
|
|
ProductName = "Edge Node"
|
|
|
|
|
ProcessName = "edge-node"
|
|
|
|
|
|
|
|
|
|
Role = "node"
|
|
|
|
|
|
|
|
|
|
EncryptKey = "8f983f4d69b83aaa0d74b21a212f6967"
|
|
|
|
|
EncryptMethod = "aes-256-cfb"
|
2021-01-11 18:16:15 +08:00
|
|
|
|
2021-05-13 14:37:40 +08:00
|
|
|
// SystemdServiceName systemd
|
2021-01-11 18:16:15 +08:00
|
|
|
SystemdServiceName = "edge-node"
|
2022-05-18 23:14:57 +08:00
|
|
|
|
2023-09-28 15:02:06 +08:00
|
|
|
AccessLogSockName = "edge-node.accesslog"
|
|
|
|
|
CacheGarbageSockName = "edge-node.cache.garbage"
|
2024-03-24 11:25:35 +08:00
|
|
|
|
2024-03-25 11:40:19 +08:00
|
|
|
EnableKVCacheStore = true // determine store cache keys in KVStore or sqlite
|
2020-09-09 18:53:53 +08:00
|
|
|
)
|