Initial commit

This commit is contained in:
2026-04-18 14:19:51 +04:00
commit f05b82ec21
4 changed files with 140 additions and 0 deletions

13
attributes/default.rb Normal file
View File

@@ -0,0 +1,13 @@
node.default['blossom']['repo_url'] = 'https://github.com/67P/blossom-server.git'
node.default['blossom']['revision'] = 'master'
node.default['blossom']['install_dir'] = '/opt/blossom'
node.default['blossom']['user'] = 'blossom'
node.default['blossom']['group'] = 'blossom'
node.default['blossom']['port'] = 3000
node.default['blossom']['host'] = '127.0.0.1'
node.default['blossom']['domain'] = 'blossom.example.com'
node.default['blossom']['allowed_pubkeys'] = []
node.default['blossom']['storage']['backend'] = 'local'
node.default['blossom']['storage']['local']['dir'] = "/home/#{node['blossom']['user']}/data/blobs"
node.default['blossom']['storage']['s3'] = {}