File tree Expand file tree Collapse file tree 5 files changed +10
-24
lines changed
src/main/java/ddingdong/ddingdongBE/common/config Expand file tree Collapse file tree 5 files changed +10
-24
lines changed Original file line number Diff line number Diff line change 55 group: webapp
66 content: |
77 #!/usr/bin/env bash
8+
9+ ENV_FILE="/var/app/current/.env"
10+ /opt/elasticbeanstalk/bin/get-config environment | \
11+ jq -r 'to_entries | .[] | "\(.key)=\(.value)"' > "$ENV_FILE"
12+ chmod 600 "$ENV_FILE"
13+ chown webapp:webapp "$ENV_FILE"
14+
815 JAR_PATH=/var/app/current/application.jar
916 AGENT_PATH=/var/app/current/otel/opentelemetry-javaagent.jar
1017 LOG_DIR=/var/app/current/logs/gc
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5656 cp -r alloy deploy/alloy
5757 cp -r .ebextensions deploy/.ebextensions
5858 cp -r .platform deploy/.platform
59+ cp -r otel deploy/otel
5960 cd deploy && zip -r deploy.zip .
6061
6162 # Beanstalk Deploy 플러그인 사용
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ otelcol.receiver.otlp "default" {
192192
193193otelcol.exporter.otlp "tempo" {
194194 client {
195- endpoint = "http://3.39.151.102:4317/tempo/otlp "
195+ endpoint = "http://3.39.151.102:4317"
196196 tls {
197197 insecure = true
198198 }
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ public class OpenApiConfig {
1818 @ Bean
1919 public OpenAPI openApi () {
2020 return new OpenAPI ()
21+ .openapi ("3.0.1" )
2122 .components (securityComponents ())
2223 .servers (List .of (new Server ().url (serverUrl )));
2324 }
You can’t perform that action at this time.
0 commit comments