| # ******************************************************************************* |
| # Copyright (c) 2019 Contributors to the Eclipse Foundation |
| # |
| # See the NOTICE file(s) distributed with this work for additional |
| # information regarding copyright ownership. |
| # |
| # This program and the accompanying materials are made available under the |
| # terms of the Eclipse Public License v. 2.0 which is available at |
| # http://www.eclipse.org/legal/epl-2.0. |
| # |
| # SPDX-License-Identifier: EPL-2.0 |
| # ******************************************************************************* |
| spring: |
| rabbitmq: |
| host: entdockergss |
| port: 5672 |
| username: ${GFI_RABBITMQ_USERNAME} |
| password: ${GFI_RABBITMQ_PASSWORD} |
| |
| # Importkanal |
| importExchange: sitImportExchange |
| importQueue: sitImportQueue |
| importkey: sitImportExchange.failureImportKey |
| |
| logging: |
| level: |
| root: INFO |
| org.eclipse.openk: INFO |
| org.springframework.web: ERROR |
| |
| server: |
| max-http-header-size: 262144 |
| |
| feign: |
| client: |
| config: |
| default: |
| connectTimeout: 60000 |
| readTimeout: 60000 |
| |
| stoerungsauskunft: |
| apiUrl: https://stage-api-operator.stoerungsauskunft.de/api/v1.0/ |
| user: ${GFI_STOERUNGSAUSKUNFT_USERNAME} |
| password: ${GFI_STOERUNGSAUSKUNFT_PASSWORD} |
| scheduling-import: |
| enabled: false |
| cron: 0 */15 * ? * * |
| |
| gridFailureInformation: |
| autopublish: false |
| |
| --- |
| |
| spring: |
| profiles: test |
| |
| stoerungsauskunft: |
| apiUrl: https://stage-api-operator.stoerungsauskunft.de/api/v1.0/ |
| user: userName |
| password: secPwd |
| scheduling-import: |
| enabled: true |
| cron: 0 */15 * ? * * |
| --- |
| |
| spring: |
| profiles: devserver |
| |
| logging: |
| level: |
| root: INFO |
| org.eclipse.openk: DEBUG |
| org.springframework.web: ERROR |
| |
| server: |
| port: 9196 |
| |
| --- |
| |
| spring: |
| profiles: devserver-unsecure |
| |
| logging: |
| level: |
| root: INFO |
| org.eclipse.openk: DEBUG |
| org.springframework.web: ERROR |
| |
| server: |
| port: 9197 |
| |
| --- |
| |
| spring: |
| profiles: devserver-branch |
| rabbitmq: |
| # Importkanal |
| importExchange: sitImportExchange_branch |
| importQueue: sitImportQueue_branch |
| importkey: sitImportExchange.failureImportKey |
| |
| --- |
| |
| spring: |
| profiles: qserver |
| rabbitmq: |
| host: localhost |
| port: 5672 |
| username: ${GFI_RABBITMQ_USERNAME} |
| password: ${GFI_RABBITMQ_PASSWORD} |
| |
| # Importkanal |
| importExchange: sitImportExchange |
| importQueue: sitImportQueue |
| importkey: sitImportExchange.failureImportKey |
| |
| logging: |
| level: |
| root: INFO |
| org.eclipse.openk: DEBUG |
| org.springframework.web: ERROR |
| |
| server: |
| port: 9195 |
| max-http-header-size: 262144 |
| servlet: |
| session: |
| tracking-modes: cookie |
| |
| swagger: |
| baseUrl: /test-stoerungsauskunft-interface |