mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 10:56:48 +00:00
30 lines
589 B
Plaintext
30 lines
589 B
Plaintext
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
|
|
}
|
|
|
|
delete {
|
|
allow_batch: true
|
|
}
|
|
|
|
upload {
|
|
# the max size in Mb of the upload contents in one upload call
|
|
max_upload_size_mb: 0
|
|
}
|
|
|
|
cors {
|
|
origins: "*"
|
|
}
|
|
|
|
auth {
|
|
# enable/disable auth validation on upload/download
|
|
enabled: true
|
|
|
|
# names of cookies in which authorization token can be found
|
|
cookie_names: ["clearml_token_basic"]
|
|
|
|
tokens_cache_threshold_sec: 43200
|
|
} |