Skip to content

Commit 20a9c59

Browse files
committed
fix documentation links
1 parent 085dfa0 commit 20a9c59

File tree

2 files changed

+37
-37
lines changed

2 files changed

+37
-37
lines changed

include/config/global.inc.dist.php

+33-33
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
/**
55
* Do not edit this unless you have confirmed that your config has been updated!
66
* Also the URL to check for the most recent upstream versions available
7-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-config-version
7+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#config-version
88
**/
99
$config['version'] = '1.0.1';
1010
$config['version_url'] = 'https://raw.githubusercontent.com/MPOS/php-mpos/master/include/version.inc.php';
1111

1212
/**
1313
* Unless you disable this, we'll do a quick check on your config first.
14-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-config-check
14+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#config-check
1515
*/
1616
$config['skip_config_tests'] = false;
1717

@@ -24,7 +24,7 @@
2424
/**
2525
* Defines
2626
* Debug setting and salts for hashing passwords
27-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-defines--salts
27+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#defines--salts
2828
*/
2929
$config['DEBUG'] = 0;
3030
$config['SALT'] = 'PLEASEMAKEMESOMETHINGRANDOM';
@@ -33,7 +33,7 @@
3333
/**
3434
* Coin Algorithm
3535
* Algorithm used by this coin, sha256d or scrypt
36-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-algorithm
36+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#algorithm
3737
**/
3838
$config['algorithm'] = 'scrypt';
3939

@@ -47,7 +47,7 @@
4747
/**
4848
* Database configuration
4949
* MySQL database configuration
50-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-database-configuration
50+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#database-configuration
5151
**/
5252
$config['db']['host'] = 'localhost';
5353
$config['db']['user'] = 'someuser';
@@ -75,7 +75,7 @@
7575
/**
7676
* Local wallet RPC
7777
* RPC configuration for your daemon/wallet
78-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-local-wallet-rpc
78+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#local-wallet-rpc
7979
**/
8080
$config['wallet']['type'] = 'http';
8181
$config['wallet']['host'] = 'localhost:19334';
@@ -85,7 +85,7 @@
8585
/**
8686
* Swiftmailer configuration
8787
* Configure your way to send mails
88-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-swiftmailer
88+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#swiftmailer
8989
**/
9090
$config['swiftmailer']['type'] = 'sendmail';
9191
$config['swiftmailer']['sendmail']['path'] = '/usr/sbin/sendmail';
@@ -100,7 +100,7 @@
100100
/**
101101
* Getting Started Config
102102
* Shown to users in the 'Getting Started' section
103-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-getting-started
103+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#getting-started
104104
**/
105105
$config['gettingstarted']['coinname'] = 'Litecoin';
106106
$config['gettingstarted']['coinurl'] = 'http://www.litecoin.org';
@@ -110,7 +110,7 @@
110110
/**
111111
* Ticker API
112112
* Fetch exchange rates via an API
113-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-ticker-api
113+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#ticker-api
114114
**/
115115
$config['price']['enabled'] = false;
116116
$config['price']['url'] = 'https://btc-e.nz';
@@ -120,66 +120,66 @@
120120
/**
121121
* Automatic Payout Thresholds
122122
* Minimum and Maximum auto payout amount
123-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-automatic-payout-thresholds
123+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#automatic-payout-thresholds
124124
**/
125125
$config['ap_threshold']['min'] = 1;
126126
$config['ap_threshold']['max'] = 250;
127127

128128
/**
129129
* Minimum manual Payout Threshold
130130
* Minimum manual payout amount
131-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-manual-payout-threshold
131+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#manual-payout-threshold
132132
**/
133133
$config['mp_threshold'] = 1;
134134

135135
/**
136136
* Donation thresholds
137137
* Minimum donation amount in percent
138-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-donation-thresholds
138+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#donation-thresholds
139139
**/
140140
$config['donate_threshold']['min'] = 1;
141141

142142
/**
143143
* Account Specific Settings
144144
* Settings for each user account
145-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-account-specific-settings
145+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#account-specific-settings
146146
**/
147147
$config['accounts']['invitations']['count'] = 5;
148148

149149
/**
150150
* Currency
151151
* Shorthand name for the currency
152-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-currency
152+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#currency
153153
*/
154154
$config['currency'] = 'LTC';
155155

156156
/**
157157
* Coin Target
158158
* Target time for coins to be generated
159-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-coin-target
159+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#coin-target
160160
**/
161161
$config['cointarget'] = '150';
162162

163163
/**
164164
* Coin Diff Change
165165
* Amount of blocks between difficulty changes
166-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-coin-diff-change
166+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#coin-diff-change
167167
**/
168168
$config['coindiffchangetarget'] = 2016;
169169

170170
/**
171171
* TX Fees
172172
* Fees applied to transactions
173-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-tx-fees
173+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#tx-fees
174174
**/
175175
$config['txfee_auto'] = 0.1;
176176
$config['txfee_manual'] = 0.1;
177177

178178
/**
179179
* Block & Pool Bonus
180180
* Bonus coins for blockfinder or a pool bonus for everyone
181-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-block-bonus
182-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-pool-bonus
181+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#block-bonus
182+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#pool-bonus
183183
*/
184184
$config['block_bonus'] = 0;
185185
$config['pool_bonus'] = 0;
@@ -188,14 +188,14 @@
188188
/**
189189
* Payout System
190190
* Payout system chosen
191-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-payout-system
191+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#payout-system
192192
**/
193193
$config['payout_system'] = 'prop';
194194

195195
/**
196196
* Sendmany Support
197197
* Enable/Disable Sendmany RPC method
198-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-sendmany-support
198+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#sendmany-support
199199
**/
200200
$config['sendmany']['enabled'] = false;
201201

@@ -209,15 +209,15 @@
209209
/**
210210
* Round Purging
211211
* Round share purging configuration
212-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-round-purging
212+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#round-purging
213213
**/
214214
$config['purge']['sleep'] = 1;
215215
$config['purge']['shares'] = 25000;
216216

217217
/**
218218
* Share Archiving
219219
* Share archiving configuration details
220-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-archiving
220+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#archiving
221221
**/
222222
$config['archive']['maxrounds'] = 10;
223223
$config['archive']['maxage'] = 60 * 24;
@@ -226,14 +226,14 @@
226226
/**
227227
* Pool Fees
228228
* Fees applied to users
229-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-pool-fees
229+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#pool-fees
230230
*/
231231
$config['fees'] = 0;
232232

233233
/**
234234
* PPLNS
235235
* Pay Per Last N Shares
236-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-pplns-settings
236+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#pplns-settings
237237
*/
238238
$config['pplns']['shares']['default'] = 4000000;
239239
$config['pplns']['shares']['type'] = 'blockavg';
@@ -244,30 +244,30 @@
244244
/**
245245
* Difficulty
246246
* Difficulty setting for stratum/pushpool
247-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-pool-target-difficulty
247+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#pool-target-difficulty
248248
*/
249249
$config['difficulty'] = 20;
250250

251251
/**
252252
* Block Reward
253253
* Block reward configuration details
254-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-reward-settings
254+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#reward-settings
255255
**/
256256
$config['reward_type'] = 'block';
257257
$config['reward'] = 50;
258258

259259
/**
260260
* Confirmations
261261
* Credit and Network confirmation settings
262-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-confirmations
262+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#confirmations
263263
*/
264264
$config['confirmations'] = 120;
265265
$config['network_confirmations'] = 120;
266266

267267
/**
268268
* PPS
269269
* Pay Per Share configuration details
270-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-pps-settings
270+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#pps-settings
271271
**/
272272
$config['pps']['reward']['default'] = 50;
273273
$config['pps']['reward']['type'] = 'blockavg';
@@ -276,7 +276,7 @@
276276
/**
277277
* Memcache
278278
* Memcache configuration details
279-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-memcache
279+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#memcache
280280
**/
281281
$config['memcache']['enabled'] = true;
282282
$config['memcache']['host'] = 'localhost';
@@ -292,7 +292,7 @@
292292
/**
293293
* Cookies
294294
* Cookie configuration details
295-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-cookies
295+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#cookies
296296
**/
297297
$config['cookie']['duration'] = '1440';
298298
$config['cookie']['domain'] = '';
@@ -303,14 +303,14 @@
303303
/**
304304
* Smarty Cache
305305
* Enable smarty cache and cache length
306-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-smarty-cache
306+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#smarty-cache
307307
**/
308308
$config['smarty']['cache'] = 0;
309309
$config['smarty']['cache_lifetime'] = 30;
310310

311311
/**
312312
* System load
313313
* Disable some calls when high system load
314-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-system-load
314+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#system-load
315315
**/
316316
$config['system']['load']['max'] = 10.0;

include/config/security.inc.dist.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Memcache Rate Limiting
2525
* Rate limit requests using Memcache
26-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-memcache-rate-limiting
26+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#memcache-rate-limiting
2727
*/
2828
$config['mc_antidos']['enabled'] = true;
2929
$config['mc_antidos']['protect_ajax'] = true;
@@ -38,14 +38,14 @@
3838
/**
3939
* CSRF Protection
4040
* Enable or disable CSRF protection
41-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-csrf-protection
41+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#csrf-protection
4242
*/
4343
$config['csrf']['enabled'] = true;
4444

4545
/**
4646
* E-mail confirmations for user actions
4747
* Two-factor confirmation for user actions
48-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-e-mail-confirmations
48+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#e-mail-confirmations
4949
*/
5050
$config['twofactor']['enabled'] = true;
5151
$config['twofactor']['options']['details'] = true;
@@ -55,7 +55,7 @@
5555
/**
5656
* Lock account after X
5757
* Lock accounts after X invalid logins or pins
58-
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-lock-accounts-after-failed-logins
58+
* https://github.com/MPOS/php-mpos/wiki/Config-Setup#lock-accounts-after-failed-logins
5959
**/
6060
$config['maxfailed']['login'] = 3;
6161
$config['maxfailed']['pin'] = 3;

0 commit comments

Comments
 (0)