Files

19 lines
593 B
PHP
Raw Permalink Normal View History

2012-03-03 16:01:58 +01:00
<?php
$config['page_title'] = '6paster';
$config['mysql_host'] = 'localhost';
$config['mysql_user'] = 'paster';
$config['mysql_pass'] = 'samplepass';
$config['mysql_db'] = 'paste';
2012-03-04 02:45:13 +01:00
$config['limit_hour'] = 60; // throttle pastes per hour
$config['limit_day'] = 100; // throttle pastes per day
2012-03-03 16:01:58 +01:00
2012-03-04 02:45:13 +01:00
$config['ttl_min'] = 3600; // minimum lifetime is 1 hour
$config['ttl_max'] = 3600*24*30; // maximum ttl is 30 days
$config['paste_max_chars'] = 1024*300; // size limit in characters
2012-03-03 16:01:58 +01:00
$config['server_name'] = 'https://p.6core.net/'; // server url
2012-03-03 16:01:58 +01:00