From a81aa511a4b97f7d90f7b5a35507ebfa08b11265 Mon Sep 17 00:00:00 2001 From: mborne Date: Fri, 7 Apr 2023 17:26:00 +0200 Subject: [PATCH] add a note about unsafe ssl option (refs #2) --- docs/options.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/options.md diff --git a/docs/options.md b/docs/options.md new file mode 100644 index 0000000..cee43cc --- /dev/null +++ b/docs/options.md @@ -0,0 +1,19 @@ +# Notes about some options + +## unsafe-ssl + +Using `--unsafe-ssl` produce the following output for repositories : + +```json +{ + "options": { + "ssl": { + "allow_self_signed": true, + "verify_peer": false, + "verify_peer_name": false + } + }, + "type": "vcs", + "url": "https://gitlab.com/mborne/sample-composer.git" +} +```