You've already forked qlg.tsgz.moe
addons
cron
dysms
model
sdk
lib
Api
Core
Auth
Exception
Http
Profile
Regions
AcsRequest.php
AcsResponse.php
Config.php
DefaultAcsClient.php
IAcsClient.php
RoaAcsRequest.php
RpcAcsRequest.php
vendor
Dysms.php
config.php
install.sql
uninstall.sql
kuaidi
.htaccess
app_download_files
extend
hyhproject
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
hyhproject.tar.gz
index.html
index.php
qlg.tar.gz
reg.lock
robots.txt
23 lines
416 B
PHP
Executable File
23 lines
416 B
PHP
Executable File
<?php
|
|
|
|
namespace Aliyun\Core;
|
|
|
|
use Aliyun\Core\Regions\EndpointConfig;
|
|
|
|
//config http proxy
|
|
define('ENABLE_HTTP_PROXY', FALSE);
|
|
define('HTTP_PROXY_IP', '127.0.0.1');
|
|
define('HTTP_PROXY_PORT', '8888');
|
|
|
|
|
|
class Config
|
|
{
|
|
private static $loaded = false;
|
|
public static function load(){
|
|
if(self::$loaded) {
|
|
return;
|
|
}
|
|
EndpointConfig::load();
|
|
self::$loaded = true;
|
|
}
|
|
} |