config.go 954 B

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