diff --git a/doc/manual/command-ref/conf-file.xml b/doc/manual/command-ref/conf-file.xml
index 73e0017cc..79e18de9b 100644
--- a/doc/manual/command-ref/conf-file.xml
+++ b/doc/manual/command-ref/conf-file.xml
@@ -404,7 +404,7 @@ flag, e.g. --option gc-keep-outputs false.
- binary-caches-parallel-connections
+ http-connections
The maximum number of parallel TCP connections
used to fetch files from binary caches and by other downloads. It
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index a5d5a3f50..de64e9826 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -216,8 +216,9 @@ public:
Setting secretKeyFiles{this, {}, "secret-key-files",
"Secret keys with which to sign local builds."};
- Setting binaryCachesParallelConnections{this, 25, "binary-caches-parallel-connections",
- "Number of parallel connections to binary caches."};
+ Setting binaryCachesParallelConnections{this, 25, "http-connections",
+ "Number of parallel HTTP connections.",
+ {"binary-caches-parallel-connections"}};
Setting enableHttp2{this, true, "enable-http2",
"Whether to enable HTTP/2 support."};