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
6 changes: 3 additions & 3 deletions .platform/nginx/conf.d/elasticbeanstalk/001_custom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Global directive for upload size
client_max_body_size 100M;
client_body_timeout 300s; # allow up to 2 minutes for upload
proxy_connect_timeout 60s;
proxy_send_timeout 240s;
proxy_read_timeout 240s;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
2 changes: 1 addition & 1 deletion matchbox-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ COPY with-ca/ca.on.oh-ereferral-econsult-0.12.0-alpha1.0.7-snapshots.tgz igs

USER matchbox

ENTRYPOINT ["java", "-Xmx8192M", "-Dfhir.settings.path=config/fhir-settings.json", "-Dspring.config.additional-location=file:config/application.yaml", "-jar", "matchbox.jar"]
ENTRYPOINT ["java", "-Xms14g", "-Xmx14g", "-Dfhir.settings.path=config/fhir-settings.json", "-Dspring.config.additional-location=file:config/application.yaml", "-jar", "matchbox.jar"]

22 changes: 14 additions & 8 deletions matchbox-server/with-ca/application.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
server:
servlet:
context-path: /matchboxv3
spring:
datasource:
url: "jdbc:postgresql://ps-ca-hapi-fhir-db-dev.ccq3yll5qome.ca-central-1.rds.amazonaws.com:5432/matchbox-v4"
username: matchbox
password: matchbox
driverClassName: org.postgresql.Driver
jpa:
properties:
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
matchbox:
fhir:
context:
fhirVersion: 4.0.1
txServer: https://tx.fhir.org
txServer: https://terminologystandardsservice.ca/tx/fhir
txServerCache: false
onlyOneEngine: false
suppressWarnInfo:
Expand Down Expand Up @@ -65,7 +71,7 @@ matchbox:
httpReadOnly: true
hapi:
fhir:
server_address: https://matchbox.apibox.ca/matchboxv3/fhir
server_address: https://dev-matchbox.apibox.ca/matchboxv3/fhir
staticLocation: file:/apps/
implementationguides:
fhir_r4_core:
Expand All @@ -87,18 +93,18 @@ hapi:
hl7-terminology-r4:
name: hl7.terminology.r4
version: 6.0.2
ips110:
name: hl7.fhir.uv.ips
version: 1.1.0
# ips110:
# name: hl7.fhir.uv.ips
# version: 1.1.0
ips200bt:
name: hl7.fhir.uv.ips
version: 2.0.0-ballot
mhd422:
name: ihe.iti.mhd
version: 4.2.2
mhd410:
name: ihe.iti.mhd
version: 4.1.0
# mhd410:
# name: ihe.iti.mhd
# version: 4.1.0
pixm300:
name: ihe.iti.pixm
version: 3.0.0
Expand Down
Loading