We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f67b908 commit c9dcc33Copy full SHA for c9dcc33
1 file changed
lib/private/Files/Storage/DAV.php
@@ -159,6 +159,11 @@ protected function init(): void {
159
$this->client = new Client($settings);
160
$this->client->setThrowExceptions(true);
161
162
+ $proxyExclude = Server::get(IConfig::class)->getSystemValue('proxyexclude', []);
163
+ if (!empty($proxyExclude)) {
164
+ $this->client->addCurlSetting(CURLOPT_NOPROXY, implode(',', $proxyExclude));
165
+ }
166
+
167
if ($this->secure === true) {
168
if ($this->verify === false) {
169
$this->client->addCurlSetting(CURLOPT_SSL_VERIFYPEER, false);
0 commit comments