Configure landing page and admin dashboard

This commit is contained in:
2026-04-18 16:34:02 +04:00
parent d789091d8a
commit 200af9412a
3 changed files with 22 additions and 1 deletions

View File

@@ -63,7 +63,12 @@ template "#{node['blossom']['install_dir']}/config.yml" do
list_enabled: node['blossom']['list']['enabled'],
list_require_auth: node['blossom']['list']['require_auth'],
list_allow_others: node['blossom']['list']['allow_list_others'],
delete_require_auth: node['blossom']['delete']['require_auth']
delete_require_auth: node['blossom']['delete']['require_auth'],
landing_enabled: node['blossom']['landing']['enabled'],
landing_title: node['blossom']['landing']['title'],
dashboard_enabled: node['blossom']['dashboard']['enabled'],
dashboard_username: node['blossom']['dashboard']['username'],
dashboard_password: node['blossom']['dashboard']['password']
)
notifies :restart, 'service[blossom]', :delayed
end