Skip to content

Commit 0c08bd1

Browse files
authored
Auto merge of #2917 - alexcrichton:cainfo, r=brson
Add `http.cainfo` config for custom certs This adds a `http.cainfo` option to Cargo which reads CA information from a bundle to pass through to the underlying SSL implementation. This should allow configuration of Cargo in situations where the default certificate store doesn't contain the relevant certificates, such as behind corporate proxies. cc #1180
2 parents dc46aba + 8e8a292 commit 0c08bd1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/cargo/ops/registry.rs

+3
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ pub fn http_handle(config: &Config) -> CargoResult<Easy> {
198198
if let Some(proxy) = try!(http_proxy(config)) {
199199
try!(handle.proxy(&proxy));
200200
}
201+
if let Some(cainfo) = try!(config.get_path("http.cainfo")) {
202+
try!(handle.cainfo(&cainfo.val));
203+
}
201204
if let Some(timeout) = try!(http_timeout(config)) {
202205
try!(handle.connect_timeout(Duration::new(timeout as u64, 0)));
203206
try!(handle.low_speed_time(Duration::new(timeout as u64, 0)));

src/doc/config.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ index = "..." # URL of the registry index (defaults to the central repository)
7575
token = "..." # Access token (found on the central repo’s website)
7676

7777
[http]
78-
proxy = "..." # HTTP proxy to use for HTTP requests (defaults to none)
79-
timeout = 60000 # Timeout for each HTTP request, in milliseconds
78+
proxy = "..." # HTTP proxy to use for HTTP requests (defaults to none)
79+
timeout = 60000 # Timeout for each HTTP request, in milliseconds
80+
cainfo = "cert.pem" # Path to Certificate Authority (CA) bundle (optional)
8081

8182
[build]
8283
jobs = 1 # number of parallel jobs, defaults to # of CPUs

0 commit comments

Comments
 (0)