From 567cdfe729a09c1100080a21d7979f8ba3a0b439 Mon Sep 17 00:00:00 2001 From: jarod5001 <68397534+jarod5001@users.noreply.github.com> Date: Sun, 8 May 2022 17:32:42 +0200 Subject: [PATCH] Update config.php --- conf/config.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/conf/config.php b/conf/config.php index c48025f..d6b27d2 100644 --- a/conf/config.php +++ b/conf/config.php @@ -20,21 +20,19 @@ $use_auth = true; // Users: array('Username' => 'Password', 'Username2' => 'Password2', ...) // Generate secure password hash - https://tinyfilemanager.github.io/docs/pwd.html $auth_users = array( - 'yunoadmin' => password_hash('password_here', PASSWORD_DEFAULT), // change yunoadmin and password_here + '__ADMIN__' => password_hash('__PASSWORD__', PASSWORD_DEFAULT), // change yunoadmin and password_here ); // Readonly users // e.g. array('users', 'guest', ...) -$readonly_users = array( - 'user' -); +$readonly_users = array(); // Enable highlight.js (https://highlightjs.org/) on view's page $use_highlightjs = true; // highlight.js style // for dark theme use 'ir-black' -$highlightjs_style = 'vs'; +$highlightjs_style = 'ir-black'; // Enable ace.js (https://ace.c9.io/) on view's page $edit_files = true;