mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
13 lines
350 B
PHP
13 lines
350 B
PHP
<?php
|
|
if (getenv('HTTP_PROXY')) {
|
|
$CONFIG['proxy'] = getenv('HTTP_PROXY');
|
|
}
|
|
if (getenv('HTTPS_PROXY')) {
|
|
$CONFIG['proxy'] = getenv('HTTPS_PROXY');
|
|
}
|
|
if (getenv('PROXY_USER_PASSWORD')) {
|
|
$CONFIG['proxyuserpwd'] = getenv('PROXY_USER_PASSWORD');
|
|
}
|
|
if (getenv('NO_PROXY')) {
|
|
$CONFIG['proxyexclude'] = explode(',', getenv('NO_PROXY'));
|
|
}
|