mirror of
https://github.com/ION606/sharing.git
synced 2026-05-15 06:06:54 +00:00
20 lines
561 B
Plaintext
20 lines
561 B
Plaintext
{
|
||
# required contact info displayed on the about page
|
||
contact => 'mailto:support@ion606.com',
|
||
|
||
# listen defaults are fine in Docker; we’re proxied by Caddy
|
||
proxy => 1, # very important when running behind Caddy/NGINX
|
||
|
||
# provisioning/limits
|
||
provisioning => {
|
||
max_file_size => 524288000, # 500 MiB per upload
|
||
max_delay => 604800, # 7 days (seconds)
|
||
max_files => 20, # files per “batch”
|
||
},
|
||
|
||
# housekeeping
|
||
loglevel => 'warn',
|
||
minion => {cleanup => 1}, # enable built-in cleanup worker
|
||
}
|
||
|