55 lines
2.1 KiB
Properties
55 lines
2.1 KiB
Properties
|
|
# Adjust this to set the version of FHIR supported by this server. See
|
|
# FhirVersionEnum for a list of available constants.
|
|
fhir_version=DSTU3
|
|
|
|
# This is the address that the FHIR server will report as its own address.
|
|
# If this server will be deployed (for example) to an internet accessible
|
|
# server, put the DNS name of that server here.
|
|
server_address=http://localhost/fhir/
|
|
|
|
# For Jetty, use this:
|
|
# server_address=http://localhost:8080/hapi-fhir-jpaserver/fhir/
|
|
|
|
# This is the context path for the FHIR endpoint. If this is changed, the
|
|
# setting above should also be changed.
|
|
server.base=/fhir
|
|
|
|
# For Jetty, use this:
|
|
# server.base=/hapi-fhir-jpaserver/fhir
|
|
|
|
default_encoding=JSON
|
|
etag_support=ENABLED
|
|
default_page_size=20
|
|
max_page_size=200
|
|
allow_multiple_delete=true
|
|
allow_external_references=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;create=true
|
|
datasource.username=
|
|
datasource.password=
|
|
server.name=Local Tester
|
|
server.id=home
|
|
test.port=
|
|
subscription.email.enabled=true
|
|
subscription.resthook.enabled=true
|
|
hibernate.dialect=ca.uhn.fhir.jpa.util.DerbyTenSevenHapiFhirDialect
|
|
hibernate.search.model_mapping=ca.uhn.fhir.jpa.search.LuceneSearchMappingFactory
|
|
hibernate.format_sql=false
|
|
hibernate.show_sql=false
|
|
hibernate.hbm2ddl.auto=update
|
|
hibernate.jdbc.batch_size=20
|
|
hibernate.cache.use_query_cache=false
|
|
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
|
|
hibernate.search.lucene_version=LUCENE_CURRENT |