2024-04-06 03:10:15 +00:00
|
|
|
server:
|
|
|
|
address: 0.0.0.0
|
2024-04-06 05:21:30 +00:00
|
|
|
port: 80
|
2024-04-10 08:51:31 +00:00
|
|
|
servlet:
|
|
|
|
context-path: /
|
2024-04-10 12:24:56 +00:00
|
|
|
|
2024-04-10 06:43:13 +00:00
|
|
|
# Spring Configuration
|
|
|
|
spring:
|
2024-04-14 08:34:10 +00:00
|
|
|
# Don't include null properties in JSON
|
|
|
|
jackson:
|
|
|
|
default-property-inclusion: non_null
|
2024-04-10 06:43:13 +00:00
|
|
|
data:
|
|
|
|
# Redis - This is used for caching
|
|
|
|
redis:
|
2024-04-14 08:34:10 +00:00
|
|
|
host: "127.0.0.1"
|
2024-04-10 06:43:13 +00:00
|
|
|
port: 6379
|
2024-04-14 08:34:10 +00:00
|
|
|
database: 1
|
2024-04-10 06:43:13 +00:00
|
|
|
auth: "" # Leave blank for no auth
|
|
|
|
|
2024-04-14 08:34:10 +00:00
|
|
|
# Disable default metrics
|
|
|
|
management:
|
|
|
|
endpoints:
|
|
|
|
web:
|
|
|
|
exposure:
|
|
|
|
exclude:
|
|
|
|
- "*"
|
|
|
|
influx:
|
|
|
|
metrics:
|
|
|
|
export:
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
# InfluxDB Configuration
|
|
|
|
influx:
|
|
|
|
url: http://localhost
|
|
|
|
token: token
|
|
|
|
org: org
|
|
|
|
bucket: bucket
|
2024-04-10 12:24:56 +00:00
|
|
|
|
2024-04-14 08:34:10 +00:00
|
|
|
public-url: http://localhost
|