mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 15:19:21 +01:00
22 lines
399 B
Caddyfile
22 lines
399 B
Caddyfile
# Minio Console
|
|
s3.localhost:9001 {
|
|
handle_path /* {
|
|
reverse_proxy s3:9001
|
|
}
|
|
}
|
|
|
|
# Minio API
|
|
s3.localhost:9000 {
|
|
handle_path /* {
|
|
reverse_proxy s3:9000
|
|
}
|
|
}
|
|
|
|
mlflow.localhost {
|
|
basicauth /* {
|
|
root JDJhJDEwJEVCNmdaNEg2Ti5iejRMYkF3MFZhZ3VtV3E1SzBWZEZ5Q3VWc0tzOEJwZE9TaFlZdEVkZDhX # root hiccup
|
|
}
|
|
handle_path /* {
|
|
reverse_proxy mlflow:5000
|
|
}
|
|
} |