mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-05 02:57:59 +08:00
40 lines
1.4 KiB
Properties
40 lines
1.4 KiB
Properties
# This configuration file is for define default values
|
|
# User should use application.properties in the /config folder instead, not this
|
|
aimedb.server.enable=true
|
|
aimedb.server.address=0.0.0.0
|
|
aimedb.server.port=22345
|
|
|
|
billing.server.enable=true
|
|
billing.server.port=8443
|
|
|
|
aquaviewer.server.enable=true
|
|
|
|
server.port=80
|
|
|
|
build.version=${version}
|
|
build.timestamp=${ext.buildTime}
|
|
|
|
spring.servlet.multipart.max-file-size=10MB
|
|
spring.servlet.multipart.max-request-size=20MB
|
|
|
|
spring.flyway.clean-disabled=false
|
|
spring.flyway.baseline-on-migrate=true
|
|
spring.flyway.locations=classpath:db
|
|
spring.flyway.out-of-order=true
|
|
spring.flyway.validate-on-migrate=false
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
|
|
# Force color output even in non-tty mode
|
|
# Note: If your terminal doesn't support colors, uninstall your terminal and use one that does
|
|
# https://github.com/termstandard/colors#truecolor-support-in-output-devices
|
|
# If you want to read the logs using a script, read the json logs in `logs` folder instead.
|
|
spring.output.ansi.enabled=always
|
|
|
|
# Metrics
|
|
management.server.port=8081
|
|
management.endpoint.prometheus.enabled=true
|
|
management.endpoints.web.exposure.include=prometheus
|
|
management.metrics.distribution.percentiles.http.server.requests=0.5, 0.75, 0.9, 0.95, 0.99
|
|
management.metrics.distribution.percentiles.tasks.scheduled.execution=0.5, 0.75, 0.9, 0.95, 0.99
|
|
management.metrics.distribution.percentiles.spring.data.repository.invocations=0.5, 0.75, 0.9, 0.95, 0.99
|