You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
synctv/internal/conf/server.go

21 lines
624 B
Go

package conf
type ServerConfig struct {
Listen string `yaml:"listen" lc:"server listen addr" env:"SERVER_LISTEN"`
Port uint16 `yaml:"port" lc:"server listen port" env:"SERVER_PORT"`
Quic bool `yaml:"quic" lc:"enable http3/quic, need enable ssl, set cert and key file (default: true)" env:"SERVER_QUIC"`
CertPath string `yaml:"cert_path" lc:"cert path" env:"SERVER_CERT_PATH"`
KeyPath string `yaml:"key_path" lc:"key path" env:"SERVER_KEY_PATH"`
}
func DefaultServerConfig() ServerConfig {
return ServerConfig{
Listen: "127.0.0.1",
Port: 8080,
Quic: true,
CertPath: "",
KeyPath: "",
}
}