Skip to content

Commit

Permalink
Merge pull request #25 from uwcirg/feature/log-jwt-proxy-mutations
Browse files Browse the repository at this point in the history
log jwt-proxy mutations
  • Loading branch information
pbugni authored Feb 3, 2023
2 parents 73a8140 + aa1eed5 commit 40f7661
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ services:
OIDC_TOKEN_URI: "https://keycloak.${BASE_DOMAIN:-localtest.me}/auth/realms/fEMR/protocol/openid-connect/token"
OIDC_TOKEN_INTROSPECTION_URI: "https://keycloak.${BASE_DOMAIN:-localtest.me}/auth/realms/fEMR/protocol/openid-connect/token/introspect"
# TODO change to INTERNAL_FHIR_API
# TODO switch to external API (requiring auth)
MAP_API: "http://fhir-internal:8080/fhir/"
MAP_API: 'https://fhirwall.${BASE_DOMAIN:-localtest.me}/fhir/'
# FHIR URL passed to SoF client
SOF_HOST_FHIR_URL: 'https://fhirwall.${BASE_DOMAIN:-localtest.me}/fhir'
SOF_CLIENTS: '[{"id":"SCREENER", "label":"New Assessment", "launch_url":"https://confidentialbackend.${BASE_DOMAIN:-localtest.me}/auth/launch", "required_roles": ["clinician"]}, {"id":"SUMMARY", "label":"View Report", "launch_url":"https://summary.${BASE_DOMAIN:-localtest.me}/launch.html", "required_roles": ["clinician"]}]'
Expand Down Expand Up @@ -113,6 +112,7 @@ services:
env_file:
fhirwall.env
environment:
LOGSERVER_URL: "https://logs.${BASE_DOMAIN:-localtest.me}"
OIDC_AUTHORIZE_URL: "https://keycloak.${BASE_DOMAIN:-localtest.me}/auth/realms/fEMR/protocol/openid-connect/auth"
OIDC_TOKEN_URI: "https://keycloak.${BASE_DOMAIN:-localtest.me}/auth/realms/fEMR/protocol/openid-connect/token"
OIDC_TOKEN_INTROSPECTION_URI: "https://keycloak.${BASE_DOMAIN:-localtest.me}/auth/realms/fEMR/protocol/openid-connect/token/introspect"
Expand All @@ -135,6 +135,7 @@ services:
- "traefik.http.routers.fhirwall-${COMPOSE_PROJECT_NAME}.tls.certresolver=letsencrypt"
depends_on:
- fhir
- logs
networks:
- ingress
- internal
Expand Down
3 changes: 3 additions & 0 deletions dev/fhirwall.env.default
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@
# Variables defined in this file will only be available to containers/images
# ie not for interpolation in docker-compose YAML files

# JWT with embeded secret to match PGRST_JWT_SECRET from logs.env
LOGSERVER_TOKEN=

SECRET_KEY=

0 comments on commit 40f7661

Please sign in to comment.