github.com/TeaOSLab/EdgeNode@v1.3.8/internal/const/const.go (about)

     1  package teaconst
     2  
     3  const (
     4  	Version = "1.3.8.1"
     5  
     6  	ProductName = "Edge Node"
     7  	ProcessName = "edge-node"
     8  
     9  	Role = "node"
    10  
    11  	EncryptKey    = "8f983f4d69b83aaa0d74b21a212f6967"
    12  	EncryptMethod = "aes-256-cfb"
    13  
    14  	// SystemdServiceName systemd
    15  	SystemdServiceName = "edge-node"
    16  
    17  	AccessLogSockName    = "edge-node.accesslog"
    18  	CacheGarbageSockName = "edge-node.cache.garbage"
    19  
    20  	EnableKVCacheStore = true // determine store cache keys in KVStore or sqlite
    21  )