--- title: 'Running Behind a Corporate Proxy' --- ## Appending the Certificate Authority of MITM Proxies Put into each machine the PEM encoded certificate: ```yaml machine: ... files: - content: | -----BEGIN CERTIFICATE----- ... -----END CERTIFICATE----- permissions: 0644 path: /etc/ssl/certs/ca-certificates op: append ``` ## Configuring a Machine to Use the Proxy To make use of a proxy: ```yaml machine: env: http_proxy: https_proxy: no_proxy: ``` Additionally, configure the DNS `nameservers`, and NTP `servers`: ```yaml machine: env: ... time: servers: - - - ... network: nameservers: - - - ```