HTTP Proxy Support?

I googled and didn’t find a way to config HTTP Proxy for Drone. Is there any way to do that? I need this to make drone able to access corporate network content.

Drone fully supports http_proxy, https_proxy and no_proxy and we have many corporate users that take advantage of this feature. Simply pass these variables to the server and the runner; the runner ensures these values are propagated to your pipeline containers [1][2]. The Go http client supports these variables natively so we get this out of the box in Drone.

[1] https://github.com/drone/runner-go/blob/master/environ/proxy.go#L12
[2] https://github.com/drone-runners/drone-runner-docker/blob/master/engine/compiler/compiler.go#L216