12345678910111213141516171819202122232425 |
- package config
- // Config our service configuration
- type Config struct {
- //port of the http server
- Port int `yaml:"port"`
- //port of the https server
- Sslport int `yaml:"sslport"`
- //this is the url how to connect to this service from outside
- ServiceURL string `yaml:"serviceURL"`
- //this is the url where to register this service
- RegistryURL string `yaml:"registryURL"`
- //this is the url where to register this service
- SystemID string `yaml:"systemID"`
- SecretFile string `yaml:"secretfile"`
- Logging struct {
- Gelfurl string `yaml:"gelf-url"`
- Gelfport int `yaml:"gelf-port"`
- } `yaml:"logging"`
- HealthCheck struct {
- Period int `yaml:"period"`
- } `yaml:"healthcheck"`
- }
|