This commit is contained in:
aozhiwei 2024-04-24 11:05:53 +08:00
parent 46f2dbbd91
commit 40dee186b0
8 changed files with 80 additions and 0 deletions

12
config_docker/config.php Normal file
View File

@ -0,0 +1,12 @@
<?php
const DBNAME_PREFIX = 'gamedb2006_dev_';
const GLOBAL_TIME_OFFSET_KEY = 'gamedb2006_dev_:global_time_offset:';
const NET_ID = 421613;
const BUY_SERVER_PKEY = 'iG4Rpsa)6U31$H#^T85$^^3';
const OUTAPP_PKEY = 'e58f(1dcf22245985c21ff31f2f66ec4a^^TDAFF(Adaf)';
const OUTAPP_PKEY1 = '520d8eAbB(8cf1^#$^&!@d833a42c820432PDAFE^^)';
const LISTING_SWITCH = 0;
const HALL_KEY = '520d8eAbB(8cf1^#$^&!@d833a42c820432PDAFE^^)';
const MATCH_KEY = '520d8eAbB(8cf1^#$^&!@d833a42c820432PDAFE^^)';
define('PRESENT_FREE_ITEM', 1);

View File

@ -0,0 +1,11 @@
<?php
return array(
array(
'instance_id' => 1,
'host' => '172.17.0.1',
'port' => 3306,
'user' => 'root',
'passwd' => 'keji178',
)
);

View File

@ -0,0 +1,16 @@
<?php
return array(
array(
'instance_id' => 1,
'host' => '172.17.0.1',
'port' => 6379,
'passwd' => '',
),
array(
'instance_id' => 2,
'host' => '172.17.0.1',
'port' => 6379,
'passwd' => '',
),
);

View File

@ -0,0 +1,10 @@
<?php
return array(
'instance_id' => 1,
'host' => '172.17.0.1',
'port' => 3306,
'user' => 'root',
'passwd' => 'keji178',
'dbname' => 'bcnft_dev',
);

View File

@ -0,0 +1,10 @@
<?php
return array(
'instance_id' => 1,
'host' => '172.17.0.1',
'port' => 3306,
'user' => 'root',
'passwd' => 'root',
'dbname' => 'frienddb_dev_new',
);

View File

@ -0,0 +1,7 @@
<?php
return array(
'instance_id' => 1,
'host' => '127.0.0.1',
'port' => 7521
);

9
config_docker/routes.php Normal file
View File

@ -0,0 +1,9 @@
<?php
$gOnlyRoutes1 = array(
'Ops' => 1,
'Market' => 1,
);
$gExcludeRoutes = array(
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'http://127.0.0.1:7671/webapp/index.php'
);