From 28da794a907b45e37e01c24c99f7abea75f52d4a Mon Sep 17 00:00:00 2001 From: Kim Brian Ramberg Date: Sun, 14 Jun 2026 13:25:43 +0200 Subject: [PATCH] . --- freshrss/log/logrotate.status | 4 ++-- homebox/.env | 3 +++ homebox/compose.yml | 3 ++- start.sh | 3 --- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/freshrss/log/logrotate.status b/freshrss/log/logrotate.status index 6e82d71..81261d6 100644 --- a/freshrss/log/logrotate.status +++ b/freshrss/log/logrotate.status @@ -1,6 +1,6 @@ logrotate state -- version 2 "/var/log/acpid.log" 2026-1-19-2:0:0 -"/config/log/nginx/access.log" 2026-6-7-2:0:0 +"/config/log/nginx/access.log" 2026-6-14-2:0:0 "/var/log/php84/*.log" 2026-1-19-2:0:0 "/config/log/nginx/error.log" 2026-1-19-2:0:0 -"/config/log/php/error.log" 2026-6-7-2:0:0 +"/config/log/php/error.log" 2026-6-14-2:0:0 diff --git a/homebox/.env b/homebox/.env index 399bf09..e10e1eb 100644 --- a/homebox/.env +++ b/homebox/.env @@ -7,4 +7,7 @@ HBOX_WEB_MAX_FILE_UPLOAD=10 # Please consider allowing analytics to help us improve Homebox (basic computer information, no personal data) HBOX_OPTIONS_ALLOW_ANALYTICS=false +# Use a strong random string for the pepper in production, it will be used to hash API keys and make them more secure +HBOX_AUTH_API_KEY_PEPPER=thisissomelsf43509sflkj45høhafh89435hjkhfakjdhfwoieryuighajhfjaheuirywuihafjhds + PORT=3100 diff --git a/homebox/compose.yml b/homebox/compose.yml index 6048bb3..4c038ec 100644 --- a/homebox/compose.yml +++ b/homebox/compose.yml @@ -4,6 +4,7 @@ services: homebox: + #image: ghcr.io/sysadminsmedia/homebox:0.26.1 image: ghcr.io/sysadminsmedia/homebox:latest #image: ghcr.io/sysadminsmedia/homebox:latest-rootless #container_name: homebox @@ -12,8 +13,8 @@ services: - HBOX_LOG_LEVEL=${HBOX_LOG_LEVEL:-info} - HBOX_LOG_FORMAT=${HBOX_LOG_FORMAT:-text} - HBOX_WEB_MAX_FILE_UPLOAD=${HBOX_WEB_MAX_FILE_UPLOAD:-10} - # Please consider allowing analytics to help us improve Homebox (basic computer information, no personal data) - HBOX_OPTIONS_ALLOW_ANALYTICS=${HBOX_OPTIONS_ALLOW_ANALYTICS:-false} + - HBOX_AUTH_API_KEY_PEPPER=${HBOX_AUTH_API_KEY_PEPPER} volumes: - /home/rcadmin/docker/homebox/data:/data/ ports: diff --git a/start.sh b/start.sh index 1121fac..0b5d55d 100755 --- a/start.sh +++ b/start.sh @@ -3,9 +3,6 @@ # Copy this file to /usr/sbin/start to enable easy startup # sudo cp start.sh /usr/sbin/start -#docker stack deploy -c compose.yml ${PWD##*/} - - # Check if .env file exists in the current directory if [ ! -f ".env" ]; then touch .env