> For the complete documentation index, see [llms.txt](https://docs.akto.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.akto.io/getting-started/quick-start-with-akto-cloud/proxy-setup.md).

# Setting up proxy

[Akto](https://www.akto.io/) deploys multiple services in your cloud, which primarily include a dashboard, a traffic processing module and a testing module. These modules need internet access. In case, the cluster/VPC in which Akto is deployed, doesn't have internet connectivity, you can configure a proxy as follows to provide internet connectivity to Akto modules.

## Configure the given environment variables to setup proxy

1. `PROXY_URI`

This is the URI of your internet proxy. All requests (HTTP/HTTPS) will be proxied through this URI. You can take reference from the below examples to configure it properly.

```bash
PROXY_URI=192.168.0.0 // if no protocol is mentioned, we assume the protocol to be HTTP
PROXY_URI=http://192.168.0.0
PROXY_URI=https://192.168.0.0
PROXY_URI=http://192.168.0.0:9000
PROXY_URI=https://192.168.0.0:444
PROXY_URI=http://user:password@192.168.0.0 // example for authenticated proxy. By default, the proxy is assumed to be unauthenticated
PROXY_URI=user:password@192.168.0.0
PROXY_URI=user:password@192.168.0.0:9000
PROXY_URI=http://user:password@192.168.0.0:9000
PROXY_URI=https://user:password@192.168.0.0:5000
```

2. `NO_PROXY`

This is a comma separated list of IP/URLs which you do want to be proxied. This may include localhost/127.0.0.1 , internal IPs or any other URL. You can take reference from the below examples to configure it properly.

```bash
NO_PROXY=127.0.0.1
NO_PROXY=127.0.0.1,localhost
NO_PROXY=127.0.0.1, localhost, 192.168.0.0
NO_PROXY=127.0.0.1,localhost,192.168.0.0,example.com
NO_PROXY=127.0.0.1, localhost, 192.168.0.0/20, example.com
```

## Frequently Asked Questions (FAQs)

**The requests are not being proxied through the given proxy**

Please check the protocol and port for the proxy you've configured. In case this doesn't help, please reach out to use at `support@akto.io`.

**I don't see my error on this list here.**

Please send us all details at `support@akto.io` or reach out via Intercom on your Akto dashboard. We will definitely help you out.

## Get Support for your Akto setup

There are multiple ways to request support from Akto. We are 24X7 available on the following:

1. In-app `intercom` support. Message us with your query on intercom in Akto dashboard and someone will reply.
2. Join our [discord channel](https://www.akto.io/community) for community support.
3. Contact `help@akto.io` for email support.
4. Contact us [here](https://www.akto.io/contact-us).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.akto.io/getting-started/quick-start-with-akto-cloud/proxy-setup.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
