@@ -1832,7 +1832,7 @@ LEVEL = Info
1832
1832
; STORAGE_TYPE = local
1833
1833
; ;
1834
1834
; ; Allows the storage driver to redirect to authenticated URLs to serve files directly
1835
- ; ; Currently, only `minio` is supported.
1835
+ ; ; Currently, only `minio` and `azureblob` is supported.
1836
1836
; SERVE_DIRECT = false
1837
1837
; ;
1838
1838
; ; Path for attachments. Defaults to `attachments`. Only available when STORAGE_TYPE is `local`
@@ -1865,10 +1865,21 @@ LEVEL = Info
1865
1865
; ;
1866
1866
; ; Minio checksum algorithm: default (for MinIO or AWS S3) or md5 (for Cloudflare or Backblaze)
1867
1867
; MINIO_CHECKSUM_ALGORITHM = default
1868
+ ; ;
1869
+ ; ; Azure Blob endpoint to connect only available when STORAGE_TYPE is `azureblob`
1870
+ ; AZURE_BLOB_ENDPOINT =
1871
+ ; ;
1872
+ ; ; Azure Blob account name to connect only available when STORAGE_TYPE is `azureblob`
1873
+ ; AZURE_BLOB_ACCOUNT_NAME =
1874
+ ; ;
1875
+ ; ; Azure Blob account key to connect only available when STORAGE_TYPE is `azureblob`
1876
+ ; AZURE_BLOB_ACCOUNT_KEY =
1877
+ ; ;
1878
+ ; ; Azure Blob container to store the attachments only available when STORAGE_TYPE is `azureblob`
1879
+ ; AZURE_BLOB_CONTAINER = gitea
1880
+ ; ;
1868
1881
; ; override the azure blob base path if storage type is azureblob
1869
1882
; AZURE_BLOB_BASE_PATH = attachments/
1870
- ; ; override the azure blob base path if storage type is azureblob
1871
- ; AZURE_BLOB_CONTAINER = attachments/
1872
1883
1873
1884
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1874
1885
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -2433,6 +2444,9 @@ LEVEL = Info
2433
2444
; MINIO_BASE_PATH = packages/
2434
2445
; ; override the azure blob base path if storage type is azureblob
2435
2446
; AZURE_BLOB_BASE_PATH = packages/
2447
+ ; ; Allows the storage driver to redirect to authenticated URLs to serve files directly
2448
+ ; ; Currently, only `minio` and `azureblob` is supported.
2449
+ ; SERVE_DIRECT = false
2436
2450
; ;
2437
2451
; ; Path for chunked uploads. Defaults to APP_DATA_PATH + `tmp/package-upload`
2438
2452
; CHUNKED_UPLOAD_PATH = tmp/package-upload
@@ -2529,8 +2543,13 @@ LEVEL = Info
2529
2543
; ; Where your lfs files reside, default is data/lfs.
2530
2544
; PATH = data/lfs
2531
2545
; ;
2546
+ ; ; Allows the storage driver to redirect to authenticated URLs to serve files directly
2547
+ ; ; Currently, only `minio` and `azureblob` is supported.
2548
+ ; SERVE_DIRECT = false
2549
+ ; ;
2532
2550
; ; override the minio base path if storage type is minio
2533
2551
; MINIO_BASE_PATH = lfs/
2552
+ ; ;
2534
2553
; ; override the azure blob base path if storage type is azureblob
2535
2554
; AZURE_BLOB_BASE_PATH = lfs/
2536
2555
@@ -2547,7 +2566,7 @@ LEVEL = Info
2547
2566
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2548
2567
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2549
2568
; ; customize storage
2550
- ; [storage.my_minio ]
2569
+ ; [storage.minio ]
2551
2570
; STORAGE_TYPE = minio
2552
2571
; ;
2553
2572
; ; Minio endpoint to connect only available when STORAGE_TYPE is `minio`
@@ -2572,19 +2591,19 @@ LEVEL = Info
2572
2591
; MINIO_INSECURE_SKIP_VERIFY = false
2573
2592
2574
2593
; [storage.azureblob]
2575
- ; STORAGE_TYPE= azureblob
2594
+ ; STORAGE_TYPE = azureblob
2576
2595
; ;
2577
2596
; ; Azure Blob endpoint to connect only available when STORAGE_TYPE is `azureblob`
2578
- ; AZUREBLOB_ENDPOINT = https://<account_name>.blob.core.windows.net/
2597
+ ; AZURE_BLOB_ENDPOINT =
2579
2598
; ;
2580
2599
; ; Azure Blob account name to connect only available when STORAGE_TYPE is `azureblob`
2581
- ; AZUREBLOB_ACCOUNT_NAME =
2600
+ ; AZURE_BLOB_ACCOUNT_NAME =
2582
2601
; ;
2583
2602
; ; Azure Blob account key to connect only available when STORAGE_TYPE is `azureblob`
2584
- ; AZUREBLOB_ACCOUNT_KEY =
2603
+ ; AZURE_BLOB_ACCOUNT_KEY =
2585
2604
; ;
2586
2605
; ; Azure Blob container to store the attachments only available when STORAGE_TYPE is `azureblob`
2587
- ; AZUREBLOB_CONTAINER =
2606
+ ; AZURE_BLOB_CONTAINER = gitea
2588
2607
2589
2608
; [proxy]
2590
2609
; ; Enable the proxy, all requests to external via HTTP will be affected
0 commit comments