forked from cqframework/cqf-ruler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
327 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,4 @@ | |
.project | ||
examples | ||
target | ||
derby.log | ||
!target/jpaserver_derby_files | ||
derby.log |
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 |
---|---|---|
|
@@ -11,30 +11,71 @@ server_address=http://localhost:8080/cqf-ruler-dstu3/fhir/ | |
# setting above should also be changed. | ||
server.base=/cqf-ruler-dstu3/fhir | ||
|
||
|
||
|
||
enable_index_missing_fields=false | ||
auto_create_placeholder_reference_targets=false | ||
enforce_referential_integrity_on_write=false | ||
enforce_referential_integrity_on_delete=false | ||
default_encoding=JSON | ||
etag_support=ENABLED | ||
reuse_cached_search_results_millis=-1 | ||
reuse_cached_search_results_millis=60000 | ||
retain_cached_searches_mins=60 | ||
default_page_size=20 | ||
max_page_size=200 | ||
allow_override_default_search_params=true | ||
allow_contains_searches=true | ||
allow_multiple_delete=true | ||
allow_external_references=true | ||
allow_cascading_deletes=true | ||
allow_placeholder_references=true | ||
expunge_enabled=true | ||
persistence_unit_name=HAPI_PU | ||
logger.name=fhirtest.access | ||
logger.format=Path[${servletPath}] Source[${requestHeader.x-forwarded-for}] Operation[${operationType} ${operationName} ${idOrResourceName}] UA[${requestHeader.user-agent}] Params[${requestParameters}] ResponseEncoding[${responseEncodingNoDefault}] | ||
logger.error_format=ERROR - ${requestVerb} ${requestUrl} | ||
logger.log_exceptions=true | ||
datasource.driver=org.apache.derby.jdbc.EmbeddedDriver | ||
datasource.url=jdbc:derby:directory:target/jpaserver_derby_files_dstu3;create=true | ||
datasource.driver=org.h2.Driver | ||
datasource.url=jdbc:h2:file:./target/database/h2/dstu3 | ||
datasource.username= | ||
datasource.password= | ||
server.name=Local Tester | ||
server.id=home | ||
test.port= | ||
hibernate.dialect=ca.uhn.fhir.jpa.util.DerbyTenSevenHapiFhirDialect | ||
|
||
################################################### | ||
# Binary Storage (104857600 = 100mb) | ||
################################################### | ||
max_binary_size=104857600 | ||
|
||
################################################### | ||
# Validation | ||
################################################### | ||
# Should all incoming requests be validated | ||
validation.requests.enabled=false | ||
# Should outgoing responses be validated | ||
validation.responses.enabled=false | ||
|
||
################################################### | ||
# Search Features | ||
################################################### | ||
filter_search.enabled=true | ||
graphql.enabled=true | ||
# See FhirPathFilterInterceptor | ||
fhirpath_interceptor.enabled=false | ||
|
||
################################################### | ||
# Supported Resources | ||
################################################### | ||
# Enable the following property if you want to customize the | ||
# list of resources that is supported by the server (i.e. to | ||
# disable specific resources) | ||
#supported_resource_types=Patient,Observation,Encounter | ||
|
||
################################################### | ||
# Database Settings | ||
################################################### | ||
hibernate.dialect=org.hibernate.dialect.H2Dialect | ||
hibernate.search.model_mapping=ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory | ||
hibernate.format_sql=false | ||
hibernate.show_sql=false | ||
|
@@ -45,8 +86,67 @@ hibernate.cache.use_second_level_cache=false | |
hibernate.cache.use_structured_entries=false | ||
hibernate.cache.use_minimal_puts=false | ||
hibernate.search.default.directory_provider=filesystem | ||
hibernate.search.default.indexBase=target/lucenefiles_dstu3 | ||
hibernate.search.default.indexBase=target/lucenefiles | ||
hibernate.search.lucene_version=LUCENE_CURRENT | ||
tester.config.refuse_to_fetch_third_party_urls=false | ||
|
||
################################################## | ||
# ElasticSearch | ||
# Note that using ElasticSearch is disabled by | ||
# default and the server will use Lucene instead. | ||
################################################## | ||
elasticsearch.enabled=false | ||
elasticsearch.rest_url=http://localhost:9200 | ||
elasticsearch.username=SomeUsername | ||
elasticsearch.password=SomePassword | ||
elasticsearch.required_index_status=YELLOW | ||
elasticsearch.schema_management_strategy=CREATE | ||
# Immediately refresh indexes after every write. This is very bad for | ||
# performance, but can be helpful for testing. | ||
elasticsearch.debug.refresh_after_write=false | ||
elasticsearch.debug.pretty_print_json_log=false | ||
|
||
|
||
################################################## | ||
# Binary Storage Operations | ||
################################################## | ||
binary_storage.enabled=true | ||
|
||
################################################## | ||
# Bulk Data Specification | ||
################################################## | ||
bulk.export.enabled=true | ||
|
||
################################################## | ||
# CORS Settings | ||
################################################## | ||
cors.enabled=true | ||
cors.allowed_origin=* | ||
cors.allowCredentials=true | ||
# Supports multiple, comma separated allowed origin entries | ||
# cors.allowed_origin=http://localhost:8080,https://localhost:8080,https://fhirtest.uhn.ca | ||
cors.allow_origin=* | ||
|
||
################################################## | ||
# Allowed Bundle Types for persistence (defaults are: COLLECTION,DOCUMENT,MESSAGE) | ||
################################################## | ||
#allowed_bundle_types=COLLECTION,DOCUMENT,MESSAGE,TRANSACTION,TRANSACTIONRESPONSE,BATCH,BATCHRESPONSE,HISTORY,SEARCHSET | ||
|
||
################################################## | ||
# Subscriptions | ||
################################################## | ||
|
||
# Enable REST Hook Subscription Channel | ||
subscription.resthook.enabled=false | ||
|
||
# Enable Email Subscription Channel | ||
subscription.email.enabled=false | ||
email.enabled=false | ||
email.from=[email protected] | ||
email.host= | ||
email.port=0 | ||
email.username= | ||
email.password= | ||
|
||
# Enable Websocket Subscription Channel | ||
subscription.websocket.enabled=false | ||
|
Oops, something went wrong.