commit 5200f0e98dc8a2439bde790a3783c9616a109092
parent 5f4abb1b7f08adbee61232cddcecda3fa5eaff1e
Author: Daniel GarcĂa <dani-garcia@users.noreply.github.com>
Date: Sun, 27 Nov 2022 21:59:39 +0100
Merge pull request #2918 from BlackDex/issue-2761
Set "Bypass admin page security" as read-only
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/config.rs b/src/config.rs
@@ -533,7 +533,7 @@ make_config! {
database_conn_init: String, false, def, String::new();
/// Bypass admin page security (Know the risks!) |> Disables the Admin Token for the admin page so you may use your own auth in-front
- disable_admin_token: bool, true, def, false;
+ disable_admin_token: bool, false, def, false;
/// Allowed iframe ancestors (Know the risks!) |> Allows other domains to embed the web vault into an iframe, useful for embedding into secure intranets
allowed_iframe_ancestors: String, true, def, String::new();