forked from MinecraftUtilities/Backend
39 lines
653 B
YAML
39 lines
653 B
YAML
server:
|
|
address: 0.0.0.0
|
|
port: 80
|
|
servlet:
|
|
context-path: /
|
|
|
|
# Spring Configuration
|
|
spring:
|
|
# Don't include null properties in JSON
|
|
jackson:
|
|
default-property-inclusion: non_null
|
|
data:
|
|
# Redis - This is used for caching
|
|
redis:
|
|
host: "127.0.0.1"
|
|
port: 6379
|
|
database: 1
|
|
auth: "" # Leave blank for no auth
|
|
|
|
# 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
|
|
|
|
public-url: http://localhost |