diff options
author | Yarden Shoham <hrsi88@gmail.com> | 2023-02-27 18:26:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 16:26:13 +0000 |
commit | 0e7bec1849d2d7a87713abe494b4d3ef416180d4 (patch) | |
tree | c94a529eb010b289c063dfedab7aa3f53ed6736f /custom/conf | |
parent | 303b72c2d12bba44dc3def5fb3dfc1e5418a83ab (diff) | |
download | gitea-0e7bec1849d2d7a87713abe494b4d3ef416180d4.tar.gz gitea-0e7bec1849d2d7a87713abe494b4d3ef416180d4.zip |
Add InsecureSkipVerify to Minio Client for Storage (#23166)
Allows using Minio with untrusted certificates
Closes #23128
Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
Diffstat (limited to 'custom/conf')
-rw-r--r-- | custom/conf/app.example.ini | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index b478785a07..b7875c12dd 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -1871,6 +1871,9 @@ ROUTER = console ;; ;; Minio enabled ssl only available when STORAGE_TYPE is `minio` ;MINIO_USE_SSL = false +;; +;; Minio skip SSL verification available when STORAGE_TYPE is `minio` +;MINIO_INSECURE_SKIP_VERIFY = false ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -2552,6 +2555,9 @@ ROUTER = console ;; ;; Minio enabled ssl only available when STORAGE_TYPE is `minio` ;MINIO_USE_SSL = false +;; +;; Minio skip SSL verification available when STORAGE_TYPE is `minio` +;MINIO_INSECURE_SKIP_VERIFY = false ;[proxy] ;; Enable the proxy, all requests to external via HTTP will be affected |