Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
SPRING_PROFILES_ACTIVE=env

SERVER_PORT=8080
FORWARD_HEADERS_STRATEGY=framework #none for no proxy, framework for Spring Cloud Gateway, native for native proxy
REQUEST_TIMEOUT=60000

KEYCLOAK_HOST=http://localhost:8090
Expand Down
1 change: 1 addition & 0 deletions infrastructure/src/main/resources/application-env.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
server:
port: ${SERVER_PORT}
forward-headers-strategy: ${FORWARD_HEADERS_STRATEGY:none}

keycloak:
realm: ${KEYCLOAK_REALM}
Expand Down
1 change: 1 addition & 0 deletions infrastructure/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
server:
port: 80
forward-headers-strategy: none
servlet:
context-path: /api
compression:
Expand Down