Skip to content
Merged
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
16 changes: 8 additions & 8 deletions geonetwork/microservices/ogc-api-records/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ spring:
rabbitmq.host: localhost
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://database:5432/georchestra?currentSchema=geonetwork
username: georchestra
password: georchestra
url: jdbc:postgresql://${PGHOST}:${PGPORT}/${PGDATABASE}?user=${PGUSER}&currentSchema=geonetwork
username: ${PGUSER}
password: ${PGPASSWORD}
hikari:
pool-name: ogc-api-records
minimum-idle: 1
Expand All @@ -37,19 +37,19 @@ spring:
enabled: false

gn:
baseurl: https://georchestra-127-0-0-1.nip.io/geonetwork
legacy.url: https://georchestra-127-0-0-1.nip.io/geonetwork
baseurl: https://${FQDN}/geonetwork
legacy.url: https://${FQDN}/geonetwork
language:
default: eng
linkToLegacyGN4: true
site:
name: GeoNetwork
organization: opensource
index:
url: http://elasticsearch:9200
url: http://${ES_HOST}:${ES_PORT}
records: gn-records
username:
password:
username: ${ES_USERNAME}
password: ${ES_PASSWORD}
search:
queryFilter: '+isTemplate:n AND -indexingError:true' # only show relevant records
trackTotalHits: true
Expand Down
Loading