| 12345678910111213141516171819202122232425262728293031323334 | # port of the http serverport: 8080 # port of the https serversslport: 8443# this is the servicURL from outsideserviceURL: http://127.0.0.1:8080# this is the registry URL from inside this service for consul as service registryregistryURL: # this is the system id of this service. services in a cluster mode should have the same system id.systemID: autorest-srv#sercret file for storing usernames and passwordssecretfile: /tmp/storage/config/secret.yaml#where the configuration files of the backends arebackendpath: configs/backends#allow data saving without a registered backendallowAnonymousBackend: true# configuration of the gelf logging serverlogging:    gelf-url:     gelf-port: # healthcheck configurationhealthcheck:    # automatically check the health of this service every ## seconds    period: 30# configuration of the mongo storagemongodb:    host: 127.0.0.1 #mongo host ip (comma seperated ip's with a cluster installation )    port: 27017 # mongo host port    username: #username for the database (should be at last dbadmin, and read/write access)    password: #password for the user    authdb: backend1 # database to authenticate against    database: backend1 # database for the data
 |