From bc9ed9fc7bbf8348a4e3ff6606c422f6349323ee Mon Sep 17 00:00:00 2001 From: Hirzinger Robert Date: Thu, 5 Jan 2023 01:11:40 +0100 Subject: [PATCH] Update config.php as const LG_CUSTOM_HEAD was missing --- docker/php-fpm/src/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/php-fpm/src/config.php b/docker/php-fpm/src/config.php index 33d2cd5..8f22051 100644 --- a/docker/php-fpm/src/config.php +++ b/docker/php-fpm/src/config.php @@ -8,6 +8,8 @@ const LG_TITLE = 'Looking Glass'; const LG_LOGO = '

Company Looking Glass

'; // Define the URL where the logo points to; const LG_LOGO_URL = 'https://github.com/hybula/lookingglass/'; +// Define content, this could be JS, CSS or meta tags; +const LG_CUSTOM_HEAD = false; // Define a custom CSS file which can be used to style the LG, set false to disable, else point to the CSS file; const LG_CSS_OVERRIDES = false;