From 54ce63fa6e542f7d1be0f563f6126880b0f77c31 Mon Sep 17 00:00:00 2001 From: mikailbag Date: Thu, 13 Feb 2025 20:51:48 +0300 Subject: [PATCH] Fix CLI configuration docs commit_hash:5a90fe7dbe8909d811ba5f485a908a19082e3c2c --- docs/en/guides/cli/install.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/guides/cli/install.md b/docs/en/guides/cli/install.md index ff529208a..d59aad83f 100644 --- a/docs/en/guides/cli/install.md +++ b/docs/en/guides/cli/install.md @@ -4,12 +4,12 @@ Build `perforator/cmd/cli` from the root of the repository. # Configure Perforator CLI -* Set `PERFORATOR_URL` environment variable to specify the Perforator server URL once. Otherwise you need to use `--url` flag for each command. -* Set `PERFORATOR_SECURE` to specify the security level of the connection. Default is secure. +* Set `PERFORATOR_ENDPOINT` environment variable to specify the Perforator server URL once. Otherwise you need to use `--url` flag for each command. +* Set `PERFORATOR_SECURE` to enable or disable TLS. By default, TLS is enabled. ```console -export PERFORATOR_URL="https://perforator.example.com" +export PERFORATOR_ENDPOINT="https://perforator.example.com" export PERFORATOR_SECURE=true ```