-
Notifications
You must be signed in to change notification settings - Fork 34
/
config.sample.php
27 lines (21 loc) · 1.09 KB
/
config.sample.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
<?php
/*
Bitcoin Webskin - an open source PHP web interface to bitcoind
Copyright (c) 2011 14STzHS8qjsDPtqpQgcnwWpTaSHadgEewS
*/
// Communicate with bitcoind via JSON RPC calls:
define('USERNAME', 'test');
define('PASSWORD', 'test');
define('SCHEME', 'http'); // http or https
define('HOST', '127.0.0.1');
define('PORT', '8332');
define('SERVER_NETWORK', 'Bitcoin'); // Display name of the network
// Windows Localhost Server
define('SERVER_LOCALHOST', true); // is server on localhost? true / false
define('SERVER_LOCALHOST_TYPE', 'windows'); // type: windows, linux
define('WINDOWS_TASKLIST', 'C:\Windows\System32\tasklist.exe');
define('SERVER', 'C:\tmp\bitcoin\bitcoind.exe'); // full pathname to bitcoind executable
define('SERVER_NAME', 'bitcoind.exe'); // name only of bitcoind executable
define('SERVER_TESTNET', true); // use testnet? true / false
define('SERVER_DATADIR', 'C:\tmp\bitcoin-testnet-datadir'); // location of data dir
define('SERVER_CONF', 'C:\tmp\bitcoin-testnet-datadir\test.conf'); // location of conf file