You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
620 B
21 lines
620 B
<?php
|
|
|
|
return [
|
|
// aws s3配置
|
|
'aws_s3' => [
|
|
'aws_key' => 'AKIATCKAMOTOLA7KUPEV',
|
|
'aws_secret' => '1SIl1/ip240HIkwzDY3aq26IpI5GlNqvwhXfBIjC',
|
|
'aws_region' => 'ap-northeast-1',
|
|
'aws_bucket' => 'bourse-vod',
|
|
],
|
|
// chat聊天服务器配置
|
|
'chat_server' => [
|
|
'bse_url' => 'https://chat.jdtest88.com', //测试环境-chat服务api域名
|
|
],
|
|
// VIP购买配置
|
|
'vip_purchase' => [
|
|
'vip_price' => 30, // vip价格
|
|
'vip_day' => 30, // vip有效期 30天
|
|
'stock_id' => 'USD' // 购买VIP所需的货币类型
|
|
],
|
|
];
|
|
|