config.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 Logging `yaml:"logging"`
  16. HealthCheck HealthCheck `yaml:"healthcheck"`
  17. MongoDB MongoDB `yaml: "mongodb"`
  18. }
  19. type Logging struct {
  20. Gelfurl string `yaml:"gelf-url"`
  21. Gelfport int `yaml:"gelf-port"`
  22. }
  23. type HealthCheck struct {
  24. Period int `yaml:"period"`
  25. }
  26. type MongoDB struct {
  27. Host string `yaml:"host"`
  28. Port int `yaml:"port"`
  29. Username string `yaml:"username"`
  30. Password string `yaml:"password"`
  31. AuthDB string `yaml:"authdb"`
  32. Database string `yaml:"database"`
  33. }