-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.yaml
61 lines (60 loc) · 1.73 KB
/
application.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
management:
endpoints:
web:
exposure:
include: "prometheus,metrics"
spring:
flyway:
enabled: false
check-location: false
baselineOnMigrate: true
main:
allow-bean-definition-overriding: true
datasource:
url: 'jdbc:postgresql://postgres:5432/fhir'
username: root
password: 'root'
driverClassName: org.postgresql.Driver
max-active: 15
jpa:
properties:
hibernate.format_sql: false
hibernate.show_sql: false
hibernate.hbm2ddl.auto: update
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
hibernate.search.enabled: true
batch:
job:
enabled: false
hapi:
fhir:
use_apache_address_strategy: true
use_apache_address_strategy_https: true
subscription:
resthook_enabled: true
fhir_version: R4
allow_cascading_deletes: true # This should be disabled by default for all production instances
allow_multiple_delete: true # This should be disabled by default for all production instances
delete_expunge_enabled: true # This should be disabled by default for all production instances
expunge_enabled: true # This should be disabled by default for all production instances
cors:
allow_Credentials: true
allowed_origin:
- '*'
search-coord-core-pool-size: 20
search-coord-max-pool-size: 100
search-coord-queue-capacity: 200
tester:
home:
name: Local Tester
server_address: 'http://localhost:8080/fhir'
refuse_to_fetch_third_party_urls: false
fhir_version: R4
validation:
requests_enabled: true
responses_enabled: true
validation:
requests_enabled: false
responses_enabled: false
keycloak:
enabled: false