clearml-server/fileserver/config/default/fileserver.conf

30 lines
589 B
Plaintext
Raw Normal View History

2019-07-17 15:16:43 +00:00
download {
# Add response headers requesting no caching for served files
disable_browser_caching: false
# Cache timeout to be set for downloaded files
cache_timeout_sec: 300
2019-07-17 15:16:43 +00:00
}
delete {
allow_batch: true
}
upload {
# the max size in Mb of the upload contents in one upload call
max_upload_size_mb: 0
}
2019-07-17 15:16:43 +00:00
cors {
origins: "*"
2024-06-20 14:48:54 +00:00
}
auth {
# enable/disable auth validation on upload/download
enabled: true
2024-06-20 14:48:54 +00:00
# names of cookies in which authorization token can be found
cookie_names: ["clearml_token_basic"]
tokens_cache_threshold_sec: 43200
2019-07-17 15:16:43 +00:00
}