mirror of
https://codeberg.org/vlw/blobber.git
synced 2025-09-14 00:33:40 +02:00
30 lines
No EOL
784 B
INI
30 lines
No EOL
784 B
INI
; Absolute pathname to a folder where blobs will be stored
|
|
blob_storage_path = "";
|
|
|
|
; Credentials for MaraiaDB
|
|
mariadb_host = ""
|
|
mariadb_user = ""
|
|
mariadb_pass = ""
|
|
mariadb_db = ""
|
|
|
|
; UUID API endpoint
|
|
uuid_api = "https://uuidgenerator.dev/api/uuid/v7"
|
|
|
|
[access]
|
|
; Allow anyone to upload blobs from /new
|
|
enable_public_upload = false
|
|
|
|
; Allow anyone to create a collection of blobs from /new
|
|
enable_public_collection = true
|
|
|
|
; Allow content to display with inline disposition from /<uuid7> (setting this to false will force-download)
|
|
enable_public_inline = true
|
|
|
|
; Allow anyone to view blob metadata from /<uuid7>/meta
|
|
enable_public_metadata = true
|
|
|
|
; Allow force download of any blob from /<uuid7>/download
|
|
enable_public_download = true
|
|
|
|
[features]
|
|
enable_blob_versioning = true |