From af096b3663c0381f53a5fcc0b41d68552b819d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20PEZ=C3=89?= Date: Tue, 24 Mar 2026 16:32:10 +0100 Subject: [PATCH 1/2] [docs] feat(agent): add proxy documentation (#276) --- docs/usage/openaev-agent.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/usage/openaev-agent.md b/docs/usage/openaev-agent.md index 05096ee5..b839207b 100644 --- a/docs/usage/openaev-agent.md +++ b/docs/usage/openaev-agent.md @@ -224,6 +224,15 @@ The installation creates two firewall rules: --- +## Proxy Configuration + +To use a proxy with the OpenAEV Agent, you can set the following environment variables on your machine before installing the agent: +**HTTP_PROXY** and **HTTPS_PROXY** + +Verify that your proxy is correctly configured and communicate well with your OpenAEV Agent installed. + +--- + ## Features The main features of the OpenAEV Agent include: From 248836cf9777515477bfe35f7bfdd3eaedc9b8d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20PEZ=C3=89?= Date: Wed, 25 Mar 2026 10:04:58 +0100 Subject: [PATCH 2/2] [docs] feat(agent): review pr feedbacks (#276) --- docs/usage/openaev-agent.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/usage/openaev-agent.md b/docs/usage/openaev-agent.md index b839207b..19fd0eea 100644 --- a/docs/usage/openaev-agent.md +++ b/docs/usage/openaev-agent.md @@ -226,8 +226,13 @@ The installation creates two firewall rules: ## Proxy Configuration -To use a proxy with the OpenAEV Agent, you can set the following environment variables on your machine before installing the agent: -**HTTP_PROXY** and **HTTPS_PROXY** +To use a proxy with the OpenAEV Agent, define both `HTTP_PROXY` and `HTTPS_PROXY` **before running the installer**. + +You can configure them in either of the following ways: +- **Machine-wide (persistent):** set them as system environment variables so they are available globally. +- **Session-only (temporary):** set/export them in the same terminal session immediately before executing the installation script. + +If the agent is installed as a service, make sure these variables are also available to the service account. Verify that your proxy is correctly configured and communicate well with your OpenAEV Agent installed.