You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: custom/conf/app.example.ini
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1895,6 +1895,9 @@ LEVEL = Info
1895
1895
;;
1896
1896
;; Minio checksum algorithm: default (for MinIO or AWS S3) or md5 (for Cloudflare or Backblaze)
1897
1897
;MINIO_CHECKSUM_ALGORITHM = default
1898
+
;;
1899
+
;; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
;; Minio skip SSL verification available when STORAGE_TYPE is `minio`
2578
2592
;MINIO_INSECURE_SKIP_VERIFY = false
2593
+
;;
2594
+
;; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
2595
+
;MINIO_BUCKET_LOOKUP_TYPE = auto
2579
2596
2580
2597
;[proxy]
2581
2598
;; Enable the proxy, all requests to external via HTTP will be affected
Copy file name to clipboardExpand all lines: docs/content/administration/config-cheat-sheet.en-us.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -851,6 +851,7 @@ Default templates for project boards:
851
851
-`MINIO_USE_SSL`: **false**: Minio enabled ssl only available when STORAGE_TYPE is `minio`
852
852
-`MINIO_INSECURE_SKIP_VERIFY`: **false**: Minio skip SSL verification available when STORAGE_TYPE is `minio`
853
853
-`MINIO_CHECKSUM_ALGORITHM`: **default**: Minio checksum algorithm: `default` (for MinIO or AWS S3) or `md5` (for Cloudflare or Backblaze)
854
+
-`MINIO_BUCKET_LOOKUP_TYPE`: **auto**: Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
854
855
855
856
## Log (`log`)
856
857
@@ -974,12 +975,20 @@ Default templates for project boards:
974
975
-`SCHEDULE`: **@midnight** : Interval as a duration between each synchronization, it will always attempt synchronization when the instance starts.
975
976
-`UPDATE_EXISTING`: **true**: Create new users, update existing user data and disable users that are not in external source anymore (default) or only create new users if UPDATE_EXISTING is set to false.
-`RUN_AT_START`: **true**: Run job at start time (if ENABLED).
988
+
-`NOTICE_ON_SUCCESS`: **false**: Set to true to log a success message.
989
+
-`SCHEDULE`: **@midnight**: Cron syntax for scheduling deleted branches cleanup.
990
+
-`OLDER_THAN`: **24h**: Branches deleted OLDER_THAN ago will be cleaned up.
991
+
983
992
### Extended cron tasks (not enabled by default)
984
993
985
994
#### Cron - Garbage collect all repositories (`cron.git_gc_repos`)
@@ -1272,6 +1281,7 @@ is `data/lfs` and the default of `MINIO_BASE_PATH` is `lfs/`.
1272
1281
-`MINIO_BASE_PATH`: **lfs/**: Minio base path on the bucket only available when `STORAGE_TYPE` is `minio`
1273
1282
-`MINIO_USE_SSL`: **false**: Minio enabled ssl only available when `STORAGE_TYPE` is `minio`
1274
1283
-`MINIO_INSECURE_SKIP_VERIFY`: **false**: Minio skip SSL verification available when STORAGE_TYPE is `minio`
1284
+
-`MINIO_BUCKET_LOOKUP_TYPE`: **auto**: Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
-`MINIO_LOCATION`: **us-east-1**: Minio location to create bucket only available when `STORAGE_TYPE` is `minio`
1287
1297
-`MINIO_USE_SSL`: **false**: Minio enabled ssl only available when `STORAGE_TYPE` is `minio`
1288
1298
-`MINIO_INSECURE_SKIP_VERIFY`: **false**: Minio skip SSL verification available when STORAGE_TYPE is `minio`
1299
+
-`MINIO_BUCKET_LOOKUP_TYPE`: **auto**: Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
1289
1300
1290
1301
The recommended storage configuration for minio like below:
1291
1302
@@ -1307,6 +1318,8 @@ MINIO_USE_SSL = false
1307
1318
; Minio skip SSL verification available when STORAGE_TYPE is `minio`
1308
1319
MINIO_INSECURE_SKIP_VERIFY = false
1309
1320
SERVE_DIRECT = true
1321
+
; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
1322
+
MINIO_BUCKET_LOOKUP_TYPE = auto
1310
1323
```
1311
1324
1312
1325
Defaultly every storage has their default base path like below
@@ -1353,6 +1366,8 @@ MINIO_LOCATION = us-east-1
1353
1366
MINIO_USE_SSL = false
1354
1367
; Minio skip SSL verification available when STORAGE_TYPE is `minio`
1355
1368
MINIO_INSECURE_SKIP_VERIFY = false
1369
+
; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
@@ -1372,6 +1387,7 @@ is `data/repo-archive` and the default of `MINIO_BASE_PATH` is `repo-archive/`.
1372
1387
-`MINIO_BASE_PATH`: **repo-archive/**: Minio base path on the bucket only available when `STORAGE_TYPE` is `minio`
1373
1388
-`MINIO_USE_SSL`: **false**: Minio enabled ssl only available when `STORAGE_TYPE` is `minio`
1374
1389
-`MINIO_INSECURE_SKIP_VERIFY`: **false**: Minio skip SSL verification available when STORAGE_TYPE is `minio`
1390
+
-`MINIO_BUCKET_LOOKUP_TYPE`: **auto**: Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
; Minio skip SSL verification available when STORAGE_TYPE is `minio`
1237
1240
MINIO_INSECURE_SKIP_VERIFY = false
1238
1241
SERVE_DIRECT = true
1242
+
; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
1243
+
MINIO_BUCKET_LOOKUP_TYPE = auto
1239
1244
```
1240
1245
1241
1246
默认情况下,每个存储都有其默认的基本路径,如下所示:
@@ -1282,6 +1287,8 @@ MINIO_LOCATION = us-east-1
1282
1287
MINIO_USE_SSL = false
1283
1288
; Minio skip SSL verification available when STORAGE_TYPE is `minio`
1284
1289
MINIO_INSECURE_SKIP_VERIFY = false
1290
+
; Minio bucket lookup method defaults to auto mode; set it to `dns` for virtual host style or `path` for path style, only available when STORAGE_TYPE is `minio`
0 commit comments