Update caddy/config/caddyfile/check_caddyfile.sh
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s

This commit is contained in:
j
2026-01-15 10:14:48 +13:00
parent dc4d42ed31
commit 4b1657901f
13 changed files with 241 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Scrutiny - Hard Drive S.M.A.R.T Monitoring
# https://github.com/analogj/scrutiny
# Server Settings
SSH_USER="dropshell"
# Container name (change if running multiple instances)
CONTAINER_NAME=scrutiny
# Web UI port
WEB_PORT=8080
# InfluxDB port (for metrics storage)
INFLUXDB_PORT=8086
# Devices to monitor - space-separated list of block devices
# Example: "/dev/sda /dev/sdb /dev/nvme0n1"
# Leave empty to auto-detect (requires --privileged mode)
DEVICES="/dev/sda"
# Set to "true" to run in privileged mode (auto-detects all devices)
# Set to "false" to use explicit DEVICES list above
PRIVILEGED_MODE=false
# Collector schedule (cron format) - how often to collect SMART data
# Default: every day at midnight
COLLECTOR_CRON_SCHEDULE="0 0 * * *"