mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 10:56:48 +00:00
46 lines
688 B
Plaintext
46 lines
688 B
Plaintext
fileserver = "http://localhost:8081"
|
|
|
|
elastic {
|
|
events {
|
|
hosts: [{host: "127.0.0.1", port: 9200, scheme: http}]
|
|
args {
|
|
timeout: 60
|
|
max_retries: 3
|
|
retry_on_timeout: true
|
|
}
|
|
index_version: "1"
|
|
}
|
|
|
|
workers {
|
|
hosts: [{host:"127.0.0.1", port:9200, scheme: http}]
|
|
args {
|
|
timeout: 60
|
|
max_retries: 3
|
|
retry_on_timeout: true
|
|
}
|
|
index_version: "1"
|
|
}
|
|
}
|
|
|
|
mongo {
|
|
backend {
|
|
host: "mongodb://127.0.0.1:27017/backend"
|
|
}
|
|
auth {
|
|
host: "mongodb://127.0.0.1:27017/auth"
|
|
}
|
|
}
|
|
|
|
redis {
|
|
apiserver {
|
|
host: "127.0.0.1"
|
|
port: 6379
|
|
db: 0
|
|
}
|
|
workers {
|
|
host: "127.0.0.1"
|
|
port: 6379
|
|
db: 4
|
|
}
|
|
}
|