@@ -1833,6 +1833,10 @@ LEVEL = Info
1833
1833
; ;
1834
1834
; ; Minio checksum algorithm: default (for MinIO or AWS S3) or md5 (for Cloudflare or Backblaze)
1835
1835
; MINIO_CHECKSUM_ALGORITHM = default
1836
+ ; ; override the azure blob base path if storage type is azureblob
1837
+ ; AZURE_BLOB_BASE_PATH = attachments/
1838
+ ; ; override the azure blob base path if storage type is azureblob
1839
+ ; AZURE_BLOB_CONTAINER = attachments/
1836
1840
1837
1841
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1838
1842
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2395,6 +2399,8 @@ LEVEL = Info
2395
2399
; STORAGE_TYPE = local
2396
2400
; ; override the minio base path if storage type is minio
2397
2401
; MINIO_BASE_PATH = packages/
2402
+ ; ; override the azure blob base path if storage type is azureblob
2403
+ ; AZURE_BLOB_BASE_PATH = packages/
2398
2404
; ;
2399
2405
; ; Path for chunked uploads. Defaults to APP_DATA_PATH + `tmp/package-upload`
2400
2406
; CHUNKED_UPLOAD_PATH = tmp/package-upload
@@ -2468,6 +2474,8 @@ LEVEL = Info
2468
2474
; ;
2469
2475
; ; override the minio base path if storage type is minio
2470
2476
; MINIO_BASE_PATH = repo-archive/
2477
+ ; ; override the azure blob base path if storage type is azureblob
2478
+ ; AZURE_BLOB_BASE_PATH = repo-archive/
2471
2479
2472
2480
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2473
2481
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2491,6 +2499,8 @@ LEVEL = Info
2491
2499
; ;
2492
2500
; ; override the minio base path if storage type is minio
2493
2501
; MINIO_BASE_PATH = lfs/
2502
+ ; ; override the azure blob base path if storage type is azureblob
2503
+ ; AZURE_BLOB_BASE_PATH = lfs/
2494
2504
2495
2505
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2496
2506
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2529,6 +2539,21 @@ LEVEL = Info
2529
2539
; ; Minio skip SSL verification available when STORAGE_TYPE is `minio`
2530
2540
; MINIO_INSECURE_SKIP_VERIFY = false
2531
2541
2542
+ ; [storage.azureblob]
2543
+ ; STORAGE_TYPE=azureblob
2544
+ ; ;
2545
+ ; ; Azure Blob endpoint to connect only available when STORAGE_TYPE is `azureblob`
2546
+ ; AZUREBLOB_ENDPOINT = https://<account_name>.blob.core.windows.net/
2547
+ ; ;
2548
+ ; ; Azure Blob account name to connect only available when STORAGE_TYPE is `azureblob`
2549
+ ; AZUREBLOB_ACCOUNT_NAME =
2550
+ ; ;
2551
+ ; ; Azure Blob account key to connect only available when STORAGE_TYPE is `azureblob`
2552
+ ; AZUREBLOB_ACCOUNT_KEY =
2553
+ ; ;
2554
+ ; ; Azure Blob container to store the attachments only available when STORAGE_TYPE is `azureblob`
2555
+ ; AZUREBLOB_CONTAINER =
2556
+
2532
2557
; [proxy]
2533
2558
; ; Enable the proxy, all requests to external via HTTP will be affected
2534
2559
; PROXY_ENABLED = false
0 commit comments