2022-08-04 13:07:16 +02:00
|
|
|
server:
|
|
|
|
port : 8080
|
|
|
|
|
2024-12-03 12:39:19 +01:00
|
|
|
management:
|
|
|
|
server:
|
|
|
|
port: 8081
|
|
|
|
address: 127.0.0.1
|
|
|
|
endpoints:
|
|
|
|
web:
|
|
|
|
exposure:
|
2025-01-21 14:36:49 +01:00
|
|
|
# HOWTO: view _clickable_ Spring Actuator (Micrometer) Metrics endpoints:
|
|
|
|
# http://localhost:8081/actuator/metric-links
|
|
|
|
|
|
|
|
# HOWTO: view all configured endpoints of the running application:
|
|
|
|
# http://localhost:8081/actuator/mappings
|
|
|
|
|
|
|
|
# HOWTO: view the effective application configuration properties:
|
|
|
|
# http://localhost:8081/actuator/configprops
|
|
|
|
|
|
|
|
include: info, health, metrics, metric-links, mappings, openapi, swaggerui, configprops, env
|
|
|
|
endpoint:
|
|
|
|
env:
|
|
|
|
# TODO.spec: check this, maybe set to when_authorized?
|
|
|
|
show-values: always
|
|
|
|
configprops:
|
|
|
|
# TODO.spec: check this, maybe set to when_authorized?
|
|
|
|
show-values: always
|
2024-12-05 10:32:34 +01:00
|
|
|
observations:
|
|
|
|
annotations:
|
|
|
|
enabled: true
|
2024-12-03 12:39:19 +01:00
|
|
|
|
2022-07-28 16:51:36 +02:00
|
|
|
spring:
|
2025-01-21 14:36:49 +01:00
|
|
|
|
2022-07-29 14:24:50 +02:00
|
|
|
datasource:
|
|
|
|
driver-class-name: org.postgresql.Driver
|
|
|
|
password: password
|
2025-01-21 14:36:49 +01:00
|
|
|
url: ${HSADMINNG_POSTGRES_JDBC_URL}
|
2022-07-29 14:24:50 +02:00
|
|
|
username: postgres
|
|
|
|
|
|
|
|
sql:
|
|
|
|
init:
|
|
|
|
mode: never
|
|
|
|
|
|
|
|
jpa:
|
|
|
|
properties:
|
|
|
|
hibernate:
|
2022-08-30 13:08:29 +02:00
|
|
|
dialect: net.hostsharing.hsadminng.config.PostgresCustomDialect
|
2022-07-29 11:38:51 +02:00
|
|
|
|
2025-01-21 14:36:49 +01:00
|
|
|
liquibase:
|
|
|
|
contexts: ${spring.profiles.active}
|
|
|
|
|
2025-01-09 09:28:30 +01:00
|
|
|
# keep this in sync with test/.../application.yml
|
|
|
|
springdoc:
|
|
|
|
use-management-port: true
|
|
|
|
|
2024-01-23 15:11:23 +01:00
|
|
|
hsadminng:
|
|
|
|
postgres:
|
|
|
|
leakproof:
|
2024-12-23 12:49:43 +01:00
|
|
|
cas:
|
|
|
|
server: https://login.hostsharing.net/cas # use empty string to bypass CAS-validation and directly use current-subject
|
|
|
|
service: https://hsadminng.hostsharing.net:443 # TODO.conf: deployment target + matching CAS service ID
|
2024-12-05 10:32:34 +01:00
|
|
|
|
|
|
|
metrics:
|
|
|
|
distribution:
|
|
|
|
percentiles-histogram:
|
|
|
|
http:
|
|
|
|
server:
|
|
|
|
requests: true
|