Allow listing and deleting own blobs

This commit is contained in:
2026-04-18 15:43:18 +04:00
parent 916d77e2b5
commit 7f27e1013c
3 changed files with 17 additions and 1 deletions

View File

@@ -47,7 +47,11 @@ template "#{node['blossom']['install_dir']}/config.yml" do
storage_local_dir: node['blossom']['storage']['local']['dir'],
storage_s3: node['blossom']['storage']['s3'],
allowed_pubkeys: node['blossom']['allowed_pubkeys'],
max_size: node['blossom']['max_size']
max_size: node['blossom']['max_size'],
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']
)
notifies :restart, 'service[blossom]', :delayed
end