|
23 | 23 | /**
|
24 | 24 | * Database configuration
|
25 | 25 | *
|
26 |
| - * A MySQL database backend is required for mmcfe-ng. |
| 26 | + * A MySQL database backend is required for MPOS. |
27 | 27 | * Also ensure the database structure is imported!
|
28 | 28 | * The SQL file should be included in this project under the `sql` directory
|
29 | 29 | *
|
|
32 | 32 | * port = 3306
|
33 | 33 | * user = 'someuser'
|
34 | 34 | * pass = 'somepass'
|
35 |
| - * name = 'mmcfe_ng' |
| 35 | + * name = 'mpos' |
36 | 36 | **/
|
37 | 37 | $config['db']['host'] = 'localhost';
|
38 | 38 | $config['db']['user'] = 'someuser';
|
39 | 39 | $config['db']['pass'] = 'somepass';
|
40 | 40 | $config['db']['port'] = 3306;
|
41 |
| -$config['db']['name'] = 'mmcfe_ng'; |
| 41 | +$config['db']['name'] = 'mpos'; |
42 | 42 |
|
43 | 43 | /**
|
44 | 44 | * Local wallet RPC configuration
|
45 | 45 | *
|
46 |
| - * mmcfe-ng uses the RPC backend to fetch transactions, blocks |
| 46 | + * MPOS uses the RPC backend to fetch transactions, blocks |
47 | 47 | * and various other things. They need to match your coind RPC
|
48 | 48 | * configuration.
|
49 | 49 | *
|
|
62 | 62 | * API configuration to fetch prices for set currency
|
63 | 63 | *
|
64 | 64 | * Explanation:
|
65 |
| - * mmcfe-ng will try to fetch the current exchange rates |
| 65 | + * MPOS will try to fetch the current exchange rates |
66 | 66 | * from this API URL/target. Currently btc-e and coinchoose
|
67 |
| - * are supported in mmcfe-ng. If you want to remove the trade |
| 67 | + * are supported in MPOS. If you want to remove the trade |
68 | 68 | * header just set currency to an empty string.
|
69 | 69 | *
|
70 | 70 | * Default (btc-e.com):
|
|
236 | 236 | $config['pplns']['blockavg']['blockcount'] = 10;
|
237 | 237 |
|
238 | 238 | // Pool target difficulty as set in pushpoold configuration file
|
239 |
| -// Please also read this for stratum: https://github.com/TheSerapher/php-mmcfe-ng/wiki/FAQ |
| 239 | +// Please also read this for stratum: https://github.com/TheSerapher/php-mpos/wiki/FAQ |
240 | 240 | $config['difficulty'] = 20;
|
241 | 241 |
|
242 | 242 |
|
|
315 | 315 | * enabled : Disable (false) memcache for debugging or enable (true) it
|
316 | 316 | * host : Host IP or hostname
|
317 | 317 | * port : memcache port
|
318 |
| - * keyprefix : Must be changed for multiple mmcfe-ng instances on one host |
| 318 | + * keyprefix : Must be changed for multiple MPOS instances on one host |
319 | 319 | * expiration : Default expiration time in seconds of all cached keys.
|
320 | 320 | * Increase if caches expire too fast.
|
321 | 321 | * splay : Default randomizer for expiration times.
|
|
325 | 325 | * enabled = `true`
|
326 | 326 | * host = `localhost`
|
327 | 327 | * port = 11211
|
328 |
| - * keyprefix = `mmcfe_ng_` |
| 328 | + * keyprefix = `mpos_` |
329 | 329 | * expiration = 90
|
330 | 330 | * splay = 15
|
331 | 331 | **/
|
332 | 332 | $config['memcache']['enabled'] = true;
|
333 | 333 | $config['memcache']['host'] = 'localhost';
|
334 | 334 | $config['memcache']['port'] = 11211;
|
335 |
| -$config['memcache']['keyprefix'] = 'mmcfe_ng_'; |
| 335 | +$config['memcache']['keyprefix'] = 'mpos_'; |
336 | 336 | $config['memcache']['expiration'] = 90;
|
337 | 337 | $config['memcache']['splay'] = 15;
|
338 | 338 |
|
|
342 | 342 | *
|
343 | 343 | * You can configure the cookie behaviour to secure your cookies more than the PHP defaults
|
344 | 344 | *
|
345 |
| - * For multiple installations of mmcfe-ng on the same domain you must change the cookie path. |
| 345 | + * For multiple installations of MPOS on the same domain you must change the cookie path. |
346 | 346 | *
|
347 | 347 | * Explanation:
|
348 | 348 | * duration:
|
|
393 | 393 | * all data so rendering the page should not take too long anyway.
|
394 | 394 | *
|
395 | 395 | * You can test this out and enable (1) this setting but it's not guaranteed to
|
396 |
| - * work with mmcfe-ng. |
| 396 | + * work with MPOS. |
397 | 397 | *
|
398 | 398 | * Ensure that the folder `templates/cache` is writable by the webserver!
|
399 | 399 | *
|
|
0 commit comments