bfile/filed/config/filed.toml.example

82 lines
2.0 KiB
Plaintext
Raw Normal View History

2023-10-20 17:23:22 +02:00
# Welcome to the filed main configuration file!
# The comments in this file will be your guide to configuring it to fit your needs.
# If you wish there were an option in this file,
# open an issue or a PR at the git repo:
# https://git.blek.codes/blek/bfile
[files]
# Allow uploads to this server.
# Its useful to turn it off during attacks
allow_uploads=true
# Allow custom names for files
allow_custom_names=true
# Allow password protection
allow_pass_protection=true
2023-10-21 08:10:48 +02:00
# Reason why the uploads are disabled
# This is shown only if allow_uploads = false
# upload_disable_reason="File uploads were disabled because of an ongoing attack."
2023-10-20 17:23:22 +02:00
# Timeout for deleting a user uploaded file
file_del_timeout=1800
# Whitelisted file types.
# If you uncomment the line below, users
# will be able to upload only plain text files
# List: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types
# type_whitelist=[ "text/plain" ]
# Same as the option above, but in reverse.
# If you uncomment the line below, users will not be able
# to upload plain text files
# type_blacklist=[ "text/plain" ]
2023-10-21 03:53:14 +02:00
# Branding settings:
# instance name, logo, motto, etc
[brand]
2023-10-20 17:23:22 +02:00
# Name of the instance.
# Change it to fit your website's image
instance_name="blek! File"
2023-10-21 03:55:07 +02:00
# Instance motto.
# Leave a blank string to disable
instance_motto="A minute file sharing service"
2023-10-21 04:06:21 +02:00
# Instance emoji.
# Used as the icon where icon images are not available
instance_emoji="🌠"
2023-10-22 05:44:05 +02:00
# API settings
[api]
# Whether the API is enabled
enabled=true
# API Keys
# Uncomment to enable
# apikeys=[ "123" ]
# Whether /api/get_all is enabled
get_all=true
# Whether to return only the user IP's files on /api/get_all
get_all_own_only=true
# Whether /api/delete is enabled
delete=false
# Whether /api/delete can delete any file
# (this is ignored unless an API key is provided)
sudo_delete=false
# Whether /api/upload is enabled
# It is not recommended to enable it if API key auth is not enabled
upload=false