# Are you behind a proxy?

To submit analyses through proxy servers, you can pass proxy configuration to the CLI using the **`HTTP_PROXY`** and **`HTTPS_PROXY`** environment variables.

{% tabs %}
{% tab title="npm" %}

```bash
HTTP_PROXY=http://example.com:1234 npx @omlet/cli analyze
```

{% endtab %}

{% tab title="yarn" %}

```bash
HTTP_PROXY=http://example.com:1234 yarn dlx @omlet/cli analyze
```

{% endtab %}

{% tab title="pnpm" %}

```bash
HTTP_PROXY=http://example.com:1234 pnpm dlx @omlet/cli analyze
```

{% endtab %}
{% endtabs %}
