aboutsummaryrefslogtreecommitdiff
path: root/config.default.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-05-23 14:03:19 +0200
committerGravatar GitHub <noreply@github.com> 2022-05-23 14:03:19 +0200
commitf89819bd64bb5ada706f9b85abd6f7b600a95786 (patch)
tree9bc1649eb12d54f0cf9a6e6385772e91be6481f7 /config.default.php
parent8668ca7230e9198981e33f9882a6030c1733e7f3 (diff)
Custom logo HTML (#4369)
* Custom logo HTML Add option for custom HTML logo/title in the main Web UI view. Can potentially be different per user. #fix https://github.com/FreshRSS/FreshRSS/pull/3830/files#r850472247 * logo_html in main config With new `./data/config.custom.php` to provide custom values before install * Docker documentation * whitespace * Auto relax CSP to allow images for HTML logo * Documentation
Diffstat (limited to 'config.default.php')
-rw-r--r--config.default.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php
index 1b12834d0..6b024db6d 100644
--- a/config.default.php
+++ b/config.default.php
@@ -1,7 +1,8 @@
<?php
# Do not modify this file, which defines default values,
-# but edit `./data/config.php` instead, after the install process is completed.
+# but instead edit `./data/config.php` after the install process is completed,
+# or edit `./data/config.custom.php` before the install process.
return array(
# Set to `development` to get additional error messages,
@@ -30,6 +31,11 @@ return array(
# Meta description used when `allow_robots` is true.
'meta_description' => '',
+ # Override logo of this FreshRSS instance in the Web user interface.
+ # It is rendered inside an <a>...</a> element and must be valid HTML or text.
+ # Example: '<img class="logo" src="https://example.net/Hello.png" alt="Logo Example" /> Hello'
+ 'logo_html' => '',
+
# Name of the user that has administration rights.
'default_user' => '_',