Skip to content

Instantly share code, notes, and snippets.

@jkiddo
Last active September 6, 2022 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkiddo/77ca1d5dd28ac2bb7fe46706c24abe48 to your computer and use it in GitHub Desktop.
Save jkiddo/77ca1d5dd28ac2bb7fe46706c24abe48 to your computer and use it in GitHub Desktop.
management:
endpoints:
web:
exposure:
include: "health,prometheus"
spring:
main:
allow-circular-references: true
#allow-bean-definition-overriding: true
flyway:
enabled: false
check-location: false
baselineOnMigrate: true
datasource:
url: 'jdbc:postgresql://db:5432/hapi'
#url: 'jdbc:h2:file:./target/database/h2;DB_CLOSE_DELAY=-1'
#url: jdbc:h2:mem:test_mem
username: admin
password: admin
#driverClassName: org.h2.Driver
driverClassName: org.postgresql.Driver
max-active: 15
# database connection pool size
hikari:
maximum-pool-size: 10
jpa:
properties:
hibernate.format_sql: false
hibernate.show_sql: false
#Hibernate dialect is automatically detected except Postgres and H2.
#If using H2, then supply the value of ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect
#If using postgres, then supply the value of ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgres94Dialect
#hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirH2Dialect
hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgres94Dialect
hibernate.search.enabled: false
batch:
job:
enabled: false
hapi:
fhir:
openapi_enabled: true
fhir_version: R4
### enable to use the ApacheProxyAddressStrategy which uses X-Forwarded-* headers
### to determine the FHIR server address
# use_apache_address_strategy: false
### forces the use of the https:// protocol for the returned server address.
### alternatively, it may be set using the X-Forwarded-Proto header.
# use_apache_address_strategy_https: false
### enable to set the Server URL
# server_address: http://hapi.fhir.org/baseR4
# defer_indexing_for_codesystems_of_size: 101
install_transitive_ig_dependencies: true
implementationguides:
### example from registry (packages.fhir.org)
# swiss:
# name: swiss.mednet.fhir
# version: 0.8.0
# example not from registry
ips_1_0_0:
url: https://build.fhir.org/ig/hl7dk/hackathon-sep-2022/package.tgz
name: hl7.fhir.dk.hackathon.2022
version: 0.1.0
advanced_lucene_indexing: false
bulk_export_enabled: false
bulk_import_enabled: false
mdm_enabled: false
cors:
allow_Credentials: true
allowed_origin:
- '*'
# Search coordinator thread pool sizes
search-coord-core-pool-size: 20
search-coord-max-pool-size: 100
search-coord-queue-capacity: 200
tester:
home:
name: Local Tester
server_address: 'https://hackathon2022.trifork.dev'
refuse_to_fetch_third_party_urls: false
fhir_version: R4
global:
name: Global Tester
server_address: "http://hapi.fhir.org/baseR4"
refuse_to_fetch_third_party_urls: false
fhir_version: R4
inline_resource_storage_below_size: 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment