forked from jfm-so/piWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings-example.php
28 lines (21 loc) · 902 Bytes
/
settings-example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
$server_url = "/"; // ENTER WEBSITE URL ALONG WITH A TRAILING SLASH
$db_host = "localhost";
$db_user = "root";
$db_pass = "password";
$db_name = "wallet";
$rpc_host = "127.0.0.1";
$rpc_port = "8332";
$rpc_user = "bitcoinrpc";
$rpc_pass = "Cp68nBkCAADKkskaKSskaDKdmSYLtLJ";
$fullname = "Bitcoin"; //Website Title (Do Not include 'wallet')
$short = "BTC"; //Coin Short (BTC)
$blockchain_tx_url = "http://blockchain.info/tx/"; //Blockchain Url
$support = "[email protected]"; //Your support eMail
$hide_ids = array(1); //Hide account from admin dashboard
$donation_address = ""; //Donation Address
$reserve = "0"; //This fee acts as a reserve. The users balance will display as the balance in the daemon minus the reserve. We don't reccomend setting this more than the Fee the daemon charges.
//Recaptcha
$public = "Recaptcha_publickey_here";
$secret = "Recaptcha_privatekey_here";
?>