From 4281a2a7b4c9f1640e8bf222deed9a0d592faab2 Mon Sep 17 00:00:00 2001 From: kimjaeyeol Date: Wed, 24 Nov 2021 18:04:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20=EA=B0=80=EC=9D=B4=EB=93=9C?= =?UTF-8?q?=EC=97=90=20=EC=84=A4=EB=AA=85=ED=95=98=EA=B8=B0=20=EC=9C=84?= =?UTF-8?q?=ED=95=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application-prod.yml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 backend/config/src/main/resources/application-prod.yml diff --git a/backend/config/src/main/resources/application-prod.yml b/backend/config/src/main/resources/application-prod.yml new file mode 100644 index 0000000..b62be6a --- /dev/null +++ b/backend/config/src/main/resources/application-prod.yml @@ -0,0 +1,31 @@ +server: + port: 8888 + +spring: + application: + name: config-service + cloud: + config: + server: + git: + uri: https://github.com/eGovFramework/config-server + username: '{cipher}ba3...' + password: '{cipher}26a...' + search-paths: config # repository 폴더 경로 + default-label: main # main branch + ignore-local-ssh-settings: true + skip-ssl-validation: true + bus: + enabled: true # webhook 활성화: /monitor 엔드포인트 호출 가능해진다 + rabbitmq: + host: ${rabbitmq.hostname:localhost} + port: 5672 + username: guest + password: guest + +# config server actuator +management: + endpoints: + web: + exposure: + include: busrefresh