Created
July 31, 2017 09:47
-
-
Save ZiiSolutions/3d2f18a95f0b591fea8577bd2bc07d16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| default: | |
| # | |
| # Basic | |
| # | |
| server: | |
| port: 8005 | |
| # | |
| # Microservice | |
| # | |
| microservice: | |
| basePath: services | |
| server: | |
| name: ingest/content/images/v1 | |
| dependencies: repository/content/v1,pipeline/content/v1 | |
| # | |
| # Zookeeper | |
| # | |
| zookeeper: | |
| connectionString: padevaux01.staging.ixdev.pacpservices.net:2181 | |
| retry: | |
| wait: 1000 | |
| count: 3 | |
| # | |
| # Content Pipeline | |
| # | |
| contentPipeline: | |
| basePath: services | |
| server: | |
| name: pipeline/content/v1 | |
| # | |
| # Image Api | |
| # | |
| imageApi: | |
| hostName: images-uat.api.press.net | |
| path: /api/v2/meta/ | |
| apiKey: 3a2555c893397806240fcacc797d0de9 | |
| # | |
| # Images Api | |
| # | |
| images: | |
| baseUrl: https://image.assets.pressassociation.io | |
| # | |
| # Images Repository | |
| # | |
| imagesRepository: | |
| hostName: images-metadata-repository.fo.pacpservices.net | |
| path: /repository/images/metadata/v1/item/ | |
| # | |
| # RabbitMQ (Image Domain Exchange) | |
| # | |
| rabbitmq: | |
| connectionString: amqps://writer:yBUr2XQF@portal671-4.images-domain-v1-rabbitmq.the-press-association.composedb.com:15380/images-domain-v1-rabbitmq?heartbeat=10,amqps://writer:yBUr2XQF@portal639-3.images-domain-v1-rabbitmq.the-press-association.composedb.com:15380/images-domain-v1-rabbitmq?heartbeat=10 | |
| exchange: | |
| name: images-domain-v1-rabbitmq | |
| type: topic | |
| queue: | |
| name: service.content.images-ingest-v1.local | |
| autoDelete: true | |
| retry: | |
| wait: 3000 | |
| container: | |
| zookeeper: | |
| connectionString: #{process.env.ZOOKEEPER_CONNECTION_STRING} | |
| imageApi: | |
| hostName: #{process.env.IMAGE_API_HOST_NAME} | |
| path: #{process.env.IMAGE_API_PATH} | |
| apiKey: #{process.env.IMAGE_API_KEY} | |
| images: | |
| baseUrl: #{process.env.IMAGES_BASE_URL} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment