generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🔊 gateway logback fix wrong package name * 🔥 gateway rm application-no-security.yml * ♻️ gateway use same properties as for integrations * ✨ gateway add local config * Revert "♻️ gateway use same properties as for integrations" This reverts commit f8cd280. * ♻️ gateway local conf use env vars * ♻️ integrations replace custom properties aliases with env vars
- Loading branch information
Showing
8 changed files
with
40 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
SSO_ISSUER_URL: http://localhost:8100/auth/realms/local_realm | ||
SSO_CLIENT_ID: local | ||
SSO_CLIENT_SECRET: client_secret | ||
server: | ||
port: 8083 | ||
spring: | ||
cloud: | ||
gateway: | ||
routes: | ||
- id: backend | ||
uri: http://localhost:39146/ | ||
predicates: | ||
- "Path=/api/backend-service/rest/**" | ||
filters: | ||
- RewritePath=/api/digitalwf-backend-service/(?<urlsegments>.*), /$\{urlsegments} | ||
- "RemoveResponseHeader=WWW-Authenticate" | ||
- id: frontend | ||
uri: http://localhost:4173/ | ||
predicates: | ||
- "Path=/**" |
13 changes: 0 additions & 13 deletions
13
refarch-gateway/src/main/resources/application-no-security.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...gration-rest/refarch-s3-integration-rest-service/src/main/resources/application-local.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters