config.go 714 B

12345678910111213141516171819202122232425
  1. package config
  2. // Config our service configuration
  3. type Config struct {
  4. //port of the http server
  5. Port int `yaml:"port"`
  6. //port of the https server
  7. Sslport int `yaml:"sslport"`
  8. //this is the url how to connect to this service from outside
  9. ServiceURL string `yaml:"serviceURL"`
  10. //this is the url where to register this service
  11. RegistryURL string `yaml:"registryURL"`
  12. //this is the url where to register this service
  13. SystemID string `yaml:"systemID"`
  14. SecretFile string `yaml:"secretfile"`
  15. Logging struct {
  16. Gelfurl string `yaml:"gelf-url"`
  17. Gelfport int `yaml:"gelf-port"`
  18. } `yaml:"logging"`
  19. HealthCheck struct {
  20. Period int `yaml:"period"`
  21. } `yaml:"healthcheck"`
  22. }