# Installing the Apono HTTP Proxy

## Step By Step to installing the HTTP proxy

### Deploy with Kubernetes

* Set the following env vars:

```
K8S_NAMESPACE=
KMS_KEY_ID=
```

`KMS_KEY_ID` value should be the `OidcSignerKey` created by Apono-Connector CloudFormation stack:

![](https://files.readme.io/b3cd710-4534d05-connector-kms-key.png)

* Install envoy proxy with helm:

```
helm install envoy-proxy https://apono-io.github.io/apono-helm-charts/envoy-proxy/envoy-1.0.4.tgz \
    --namespace $K8S_NAMESPACE \
    --set-string jwks=`aws kms get-public-key --key-id $KMS_KEY_ID --output text --query PublicKey | awk '{print "-----BEGIN PUBLIC KEY-----\n"$1"\n-----END PUBLIC KEY-----"}' | docker run -i danedmunds/pem-to-jwk:latest | awk '{print "{\"keys\":["$1"]}"}' | openssl base64 -A` \
    --set-string tls=true \ # if destination is https
    --set-string accessLogs=true \ # if you want access logs to be written
    --create-namespace
```


---

# Agent Instructions: 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:

```
GET https://docs.apono.io/docs/additional-integrations/network-management/installing-the-apono-http-proxy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
