drive-health/.env.example

25 lines
616 B
Plaintext
Raw Normal View History

#
# All time references are in seconds
#
#
############################################################
2024-01-21 18:27:31 +02:00
# The frequency at which to fetch the temperature of ALL disks and add it to the database
2024-01-20 02:06:27 +02:00
DISK_FETCH_FREQUENCY=5
2024-01-21 18:27:31 +02:00
# How ofthen should the program clean the database of old logs
CLEANUP_SERVICE_FREQUENCY=3600
2024-01-21 18:27:31 +02:00
# The maximum age of logs in seconds
# 1 Day = 86400
# 1 Week = 604800
# 1 Month ~= 2592000
# Recommended 1 week
MAX_HISTORY_AGE=2592000
2024-01-21 18:27:31 +02:00
# The ip:port to listen to for the application
LISTEN=":8080"
2024-01-21 19:12:40 +02:00
# Basic Security, these are required to view the data
IDENTITY_USERNAME=admin
IDENTITY_PASSWORD=admin