forked from wizkid057/wizstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.example
47 lines (36 loc) · 1.54 KB
/
config.php.example
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
# wizstats - bitcoin pool web statistics - 1StatsQytc7UEZ9sHJ9BGX2csmkj8XZr2
# Copyright (C) 2012 Jason Hughes <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
$pooldatadir = "/var/lib/eligius";
$psqluser = "psql username";
$psqlpass = "psql password";
$psqlhost = "localhost";
$psqldb = "psql database name";
$psqlschema = "psql schema";
# Hard coded for now, eveuntually full multipool support if desired with little effort
$serverid = 7;
# Must have trailing / !!!
$urlprefix = "/~wizkid057/newstats/";
# bitcoin rpc url
$bitcoinrpcurl = "http://x:[email protected]:8333/";
# signature verify RPC url (can simply be = $bitcoinrpcurl if desired)
$sigbitcoinrpcurl = "http://y:[email protected]:8334/";
$poolname = "Eligius";
$specialaddrs = array(
'1CZn8RYfzcEXc2STmkCPJVf7aqP4TfbGNu' => 'Eligius CPPSRB Donations A',
'18d3HV2bm94UyY4a9DrPfoZ17sXuiDQq2B' => 'Eligius Offline Wallet'
);
?>