Envbuilder can be used from behind transparent TLS proxies that would normally risk interrupting TLS verification.
A summary of how to configure Envbuilder to run behind a HTTPS proxy is provided in the next section. Thereafter an illustrative example is provided that can be followed to prove the concept from first principles before applying it in production.
To use Envbuilder behind a proxy that requires a custom certificate, the following configuration needs to be applied. Note that if you are using Envbuilder in conjunction with Coder, set these variables on the Envbuilder container itself, not on the Coder agent.
To configure Envbuilder to route HTTP traffic for git and the container registry to the proxy, do at least one of the following:
- Set the
https_proxy=https://host:port
environment variable for the envbuilder container. This will also proxy traffic for other programs in the container that respecthttps_proxy
. If you do set it, look into the relatedhttp_proxy
andno_proxy
environment variables. For compatibility, set these environment variables in lowercase. - Set the
ENVBUILDER_GIT_HTTP_PROXY_URL=https://host:port
environment variable. This will specifically route traffic for Envbuilder's git operations and communication with the container registry without affecting other programs inside the container.
Once traffic is routed to the proxy, you will need to install the proxy's CA certificate into Envbuilder. To do this, you can do one of the following:
- Set
ENVBUILDER_SSL_CERT_BASE64=...
to the base64 encoded value of your proxy's CA certificate. This will only apply to Envbuilder. Other TLS connections within your container will not be aware of this certificate. - Mount the certificate file into the Envbuilder container and then set
ENVBUILDER_SSL_CERT_FILE=/path/to/cert.pem
. - Mount a directory containing all relevant CA certificates into the Envbuilder container and then set
ENVBUILDER_SSL_CERT_DIR=/path/to/certs/
.
Envbuilder clones a repository that contains your devcontainer.json
and optional Dockerfile
so that it can build your container. If the clone is done using HTTPS, then TLS verification must succeed or be disabled. If a transparent HTTPS proxy is present, TLS verification will fail unless Envbuilder trusts the proxy’s certificate. Therefore, we need to configure Envbuilder to trust your proxy.
For this example we'll use docker to show how to apply the configuration in practice. The configuration is applied using environment variables that can be set analogously in Kubernetes or elsewhere.
Before we introduce an HTTPS proxy, let's prove that envbuilder runs normally. Run the following docker command to obtain a shell within an Envbuilder built environment:
docker run -it --rm \
-e ENVBUILDER_INIT_SCRIPT='/bin/sh' \
-e ENVBUILDER_GIT_URL='https://github.com/coder/envbuilder.git' \
ghcr.io/coder/envbuilder:latest
Notice the log lines:
#1: 📦 Cloning https://github.com/coder/envbuilder.git to /workspaces/envbuilder...`
...
#1: 📦 Cloned repository! [711.221369ms]
After some time building, a shell will be presented inside the devcontainer environment specified in envbuilder's own repository. Assuming that envbuilder built and ran successfully, go ahead and exit the container:
exit
Let's now temporarily break Envbuilder by introducing a transparent TLS proxy to intercept traffic. To do this, we'll use mitmproxy. Start mitmproxy in a container by running the following:
docker run --rm -d --user $(id -u):$(id -g) --name mitmproxy -v ./certs:/home/mitmproxy/.mitmproxy -p 8080:8080 -p 127.0.0.1:8081:8081 mitmproxy/mitmproxy mitmweb --web-host 0.0.0.0 --set http2=false
Notice that we disable HTTP2 on mitmproxy. This is because Envbuilder and mitmproxy do not seem to be able to negotiate which version of HTTP to use. mitmproxy interprets Envbuilder's HTTP1.1 request as an HTTP2 request and then fails to find the expected HTTP2 preamble (because there is no HTTP2 preamble in an HTTP1.1 request). If your production proxy exhibits this behavior, please file a GitHub issue.
Confirm that mitmproxy is running and determine its IP address:
docker inspect mitmproxy | jq -r '.[].NetworkSettings.IPAddress'
yields:
172.17.0.2
You may see a different IP address. If you do, use that wherever we use 172.17.0.2
below.
A new directory called certs will be present in your current working directory. It will contain a CA certificate called mitmproxy-ca-cert.pem
. This will be what we provide to Envbuilder to trust our proxy.
To understand why certificate verification fails, inspect the certificates served by mitmproxy:
openssl s_client -proxy localhost:8080 -servername github.com -connect github.com:443 | head -n 10
In the output, notice that we are served a certificate that is ostensibly for github.com. However, its issuer common name is "mitmproxy" and s_client couldn't verify the certificate. This is because s_client can't find a CA certificate that trusts the certificate that was served by mitmproxy instead of the actual github.com certificate.
depth=0 CN = github.com
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=0 CN = github.com
verify error:num=21:unable to verify the first certificate
verify return:1
depth=0 CN = github.com
verify return:1
CONNECTED(00000003)
---
Certificate chain
0 s:CN = github.com
i:CN = mitmproxy, O = mitmproxy
a:PKEY: rsaEncryption, 2048 (bit); sigalg: RSA-SHA256
v:NotBefore: Nov 7 15:43:48 2024 GMT; NotAfter: Nov 9 15:43:48 2025 GMT
---
Server certificate
-----BEGIN CERTIFICATE-----
Let's rerun Envbuilder using the proxy to see how it responds. To do this, we use the same command as before, except that we also set the https_proxy
environment variable:
docker run -it --rm \
-e https_proxy=https://172.17.0.2:8080 \
-e ENVBUILDER_INIT_SCRIPT='/bin/sh' \
-e ENVBUILDER_GIT_URL='https://github.com/coder/envbuilder.git' \
ghcr.io/coder/envbuilder:latest
From the logs, notice that certificate verification fails. It fails because it doesn't trust the certificate that was provided by mitmproxy:
Failed to clone repository: clone "https://github.com/coder/envbuilder.git": Get "https://github.com/coder/envbuilder.git/info/refs?service=git-upload-pack": proxyconnect tcp: tls: failed to verify certificate: x509: certificate signed by unknown authority
To resolve this, we need to provide a CA certificate that Envbuilder can use to verify the server certificate served by mitmproxy, instead of GitHub’s. Envbuilder offers environment variables for this, as documented above. In this example, the CA certificate is saved in a directory. The simplest approach is to mount this directory as a volume in the Envbuilder container and use the SSL_CERT_FILE
environment variable. The command to run Envbuilder is now:
docker run -it --rm \
-v $PWD/certs:/certs \
-e SSL_CERT_FILE=/certs/mitmproxy-ca-cert.pem \
-e https_proxy=https://172.17.0.2:8080 \
-e ENVBUILDER_INIT_SCRIPT='/bin/sh' \
-e ENVBUILDER_GIT_URL='https://github.com/coder/envbuilder.git' \
ghcr.io/coder/envbuilder:latest
As before, this command yields a shell inside an Envbuilder built environment. Feel free to test it and then exit the container. Assuming this worked, Envbuilder will have cloned a repository and built the relevant container using a proxy that required accepting a custom CA certificate.
To prove that Envbuilder did in fact use the proxy, and also because it is interesting to observe, open http://localhost:8081/
in your local browser and you see the mitmproxy web interface. In the flow tab, there will be a list of all of the HTTP requests that were required to build the container. The first few requests will be those used to clone the Git repository. The rest will be the requests that were used to pull the devcontainer image.
Once the demonstration has concluded, cleanup the artifacts that were used in the process:
docker stop mitmproxy
rm -r certs/