Azure Blob Storage
mise-server can use Azure Blob Storage as an alternative to S3 for blob storage.
Configuration
toml
[settings]
azure_storage_account = "mystorageaccount"
azure_storage_key = "..."
azure_storage_container = "cache"Or via environment variables:
bash
export MISE_SERVER_AZURE_STORAGE_ACCOUNT=mystorageaccount
export MISE_SERVER_AZURE_STORAGE_KEY=...
export MISE_SERVER_AZURE_STORAGE_CONTAINER=cacheSetting azure_storage_account enables the Azure backend instead of S3. You do not need to configure S3 settings when using Azure.
Container
The container name defaults to cache. All blobs are stored by BLAKE3 hash, identical to the S3 backend layout.