mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
New: Can define a proxy for external web access.
This commit is contained in:
parent
45d5fa60f0
commit
12388997d8
|
|
@ -51,9 +51,11 @@ else
|
|||
}
|
||||
|
||||
// Proxy
|
||||
$PROXY_HOST = '127.0.0.1';
|
||||
$PROXY_PORT = '808';
|
||||
$USE_PROXY = false;
|
||||
$PROXY_HOST = $conf->global->MAIN_PROXY_HOST;
|
||||
$PROXY_PORT = $conf->global->MAIN_PROXY_PORT;
|
||||
$PROXY_USER = $conf->global->MAIN_PROXY_USER;
|
||||
$PROXY_PASS = $conf->global->MAIN_PROXY_PASS;
|
||||
$USE_PROXY = empty($conf->global->MAIN_PROXY_USE)?false:true;
|
||||
|
||||
// BN Code is only applicable for partners
|
||||
$sBNCode = "PP-ECWizard";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user