34 lines
1023 B
Caddyfile
34 lines
1023 B
Caddyfile
# Caddyfile for Azure Storage Emulator
|
|
__ACCOUNT_NAME__.blob.core.windows.net {
|
|
tls __AZURITE_STORAGE__/__ACCOUNT_NAME___cert.pem __AZURITE_STORAGE__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy https://127.0.0.1:10000 {
|
|
transport http {
|
|
tls
|
|
tls_trust_pool file __AZURITE_STORAGE__/ca_cert.pem
|
|
tls_server_name __ACCOUNT_NAME__.blob.core.windows.net
|
|
}
|
|
}
|
|
}
|
|
|
|
__ACCOUNT_NAME__.queue.core.windows.net {
|
|
tls __AZURITE_STORAGE__/__ACCOUNT_NAME___cert.pem __AZURITE_STORAGE__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy https://127.0.0.1:10001 {
|
|
transport http {
|
|
tls
|
|
tls_trust_pool file __AZURITE_STORAGE__/ca_cert.pem
|
|
tls_server_name __ACCOUNT_NAME__.queue.core.windows.net
|
|
}
|
|
}
|
|
}
|
|
|
|
__ACCOUNT_NAME__.table.core.windows.net {
|
|
tls __AZURITE_STORAGE__/__ACCOUNT_NAME___cert.pem __AZURITE_STORAGE__/__ACCOUNT_NAME___key.pem
|
|
reverse_proxy https://127.0.0.1:10002 {
|
|
transport http {
|
|
tls
|
|
tls_trust_pool file __AZURITE_STORAGE__/ca_cert.pem
|
|
tls_server_name __ACCOUNT_NAME__.table.core.windows.net
|
|
}
|
|
}
|
|
}
|