Files
Backend/src/main/resources/application.yml

20 lines
337 B
YAML
Raw Normal View History

2024-04-06 04:10:15 +01:00
server:
address: 0.0.0.0
2024-04-06 06:21:30 +01:00
port: 80
2024-04-10 09:51:31 +01:00
servlet:
context-path: /
error:
whitelabel:
enabled: false
2024-04-06 04:10:15 +01:00
2024-04-10 07:43:13 +01:00
# Spring Configuration
spring:
data:
# Redis - This is used for caching
redis:
host: "localhost"
port: 6379
database: 0
auth: "" # Leave blank for no auth
public-url: http://localhost:80