| # ******************************************************************************* |
| # 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} |
| export_exchange: sitExportExchange |
| mail_export_queue: sit_mail_export_queue |
| mail_export_routingkey: sit_mail_export_key |
| |
| server: |
| max-http-header-size: 262144 |
| |
| email: |
| sender: sender@test.tester |
| smtpHost: entdockergss |
| port: 1025 |
| |
| security.endpoint: |
| user: ${GFI_MANUAL_ENDPOINTS_USERNAME} |
| password: ${GFI_MANUAL_ENDPOINTS_PASSWORD} |
| |
| --- |
| |
| spring: |
| profiles: test |
| |
| security.endpoint: |
| user: mockuser |
| password: mockuser |
| |
| --- |
| |
| spring: |
| profiles: devserver |
| |
| server: |
| port: 9205 |
| |
| --- |
| |
| spring: |
| profiles: devserver-unsecure |
| |
| server: |
| port: 9206 |
| |
| --- |
| |
| spring: |
| profiles: qserver |
| rabbitmq: |
| host: localhost |
| port: 5672 |
| username: ${GFI_RABBITMQ_USERNAME} |
| password: ${GFI_RABBITMQ_PASSWORD} |
| export_exchange: sitExportExchange |
| mail_export_queue: sit_mail_export_queue |
| mail_export_routingkey: sit_mail_export_key |
| |
| server: |
| port: 9205 |
| max-http-header-size: 262144 |
| servlet: |
| session: |
| tracking-modes: cookie |
| |
| email: |
| sender: sender@test.tester |
| smtpHost: localhost |
| port: 1025 |
| |
| swagger: |
| baseUrl: /testmail |