18 lines
667 B
Caddyfile
18 lines
667 B
Caddyfile
# Caddyfile for Azure Storage Emulator
|
|
# It uses /etc/hosts entries to route requests to the emulator
|
|
# Replace "__ACCOUNT_NAME__" with a desired storage account name if needed
|
|
__ACCOUNT_NAME__.blob.core.windows.net {
|
|
tls __AZURITE_DIR__/__ACCOUNT_NAME___cert.pem __AZURITE_DIR__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy 127.0.0.1:10000
|
|
}
|
|
|
|
__ACCOUNT_NAME__.queue.core.windows.net {
|
|
tls __AZURITE_DIR__/__ACCOUNT_NAME___cert.pem __AZURITE_DIR__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy 127.0.0.1:10001
|
|
}
|
|
|
|
__ACCOUNT_NAME__.table.core.windows.net {
|
|
tls __AZURITE_DIR__/__ACCOUNT_NAME___cert.pem __AZURITE_DIR__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy 127.0.0.1:10002
|
|
}
|