forked from vizplus/start-viz-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
24 lines (20 loc) · 805 Bytes
/
config.example.php
File metadata and controls
24 lines (20 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$users_arr=array('admin'=>'TEST_PASSWORD_123');
$config['server_timezone']='Etc/GMT';
$config['db_host']='localhost';
$config['db_login']='login';
$config['db_password']='password';
$config['db_base']='database';
$config['jsonrpc_node']='https://solox.world/';
//Google recaptcha secret
$recaptcha_sitekey='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$recaptcha_secret='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
//hCaptcha secret
$hcaptcha_sitekey='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$hcaptcha_secret='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
//VIZ credentials for registration (account, private active key)
$reg_login='account';
$reg_wif='5K...';
//VIZ credentials for code-claim transfer in vesting shares (account, private active key)
$claim_login='account';
$claim_wif='5K...';