Liam
cd3738a2b9
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m46s
24 lines
414 B
YAML
24 lines
414 B
YAML
server:
|
|
address: 0.0.0.0
|
|
port: 80
|
|
servlet:
|
|
context-path: /
|
|
|
|
# The public URL of the application
|
|
public-url: http://localhost:80
|
|
|
|
# Spring Configuration
|
|
spring:
|
|
data:
|
|
# Redis - This is used for caching
|
|
redis:
|
|
host: "localhost"
|
|
port: 6379
|
|
database: 0
|
|
auth: "" # Leave blank for no auth
|
|
|
|
# Don't serialize null values
|
|
jackson:
|
|
default-property-inclusion: non_null
|
|
|