From 0980519a912301690ac090472e0d6d65bb0a8234 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 14 Sep 2025 08:32:16 -0600 Subject: [PATCH 1/2] Update app config, add description and rule env variables --- config/app.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/app.php b/config/app.php index e47e33be2..4b0a32d06 100644 --- a/config/app.php +++ b/config/app.php @@ -101,9 +101,9 @@ return [ 'cipher' => 'AES-256-CBC', - 'short_description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.', - 'description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.', - 'rules' => null, + 'short_description' => env('PF_SHORT_DESCRIPTION', 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.'), + 'description' => env('PF_DESCRIPTION', 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms.'), + 'rules' => env('PF_RULES', null), 'logo' => '/img/pixelfed-icon-color.svg', 'banner_image' => '/storage/headers/default.jpg', 'dev_log' => env('PIXELFED_DEV_LOG', false), From 2549c8fa33a93df517aac9f5243197ca888c4e0e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 14 Sep 2025 08:32:53 -0600 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0907542f0..23a42ad1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.12.5...dev) - Update Status storage, add SanitizerService to fix spacing in html stripped content ([3686c9212](https://github.com/pixelfed/pixelfed/commit/3686c9212)) +- Update app config, add description and rule env variables ([0980519a9](https://github.com/pixelfed/pixelfed/commit/0980519a9)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.12.6 (2025-09-03)](https://github.com/pixelfed/pixelfed/compare/v0.12.6...dev)