]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - config.php.sample
011c6daf6691b6b111f7ff35004f377a8e88137a
[quix0rs-gnu-social.git] / config.php.sample
1 <?php
2 /* -*- mode: php -*- */
3
4 if (!defined('LACONICA')) { exit(1); }
5
6 # We get called by common.php, $config is a tree with lots of config
7 # options
8 # These are for configuring your URLs
9
10 $config['site']['name'] = 'Just another Laconica microblog';
11 $config['site']['server'] = 'localhost';
12 $config['site']['path'] = 'laconica';
13 #$config['site']['fancy'] = false;
14 #$config['site']['theme'] = 'default';
15
16 # This is a PEAR DB DSN, see http://pear.php.net/manual/en/package.database.db.intro-dsn.php
17 # Set it to match your actual database
18
19 $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica';
20 #$config['db']['ini_your_db_name'] = $config['db']['schema_location'].'/stoica.ini';
21 #$config['db']['debug'] = 0;
22 #$config['db']['db_driver'] = 'MDB2';
23
24 #$config['tag']['authority'] = $config['site']['server'];
25 #$config['tag']['date'] = '2008';
26 #$config['tag']['prefix'] = $config['site']['path'] . ':';
27
28 #session_set_cookie_params(0, '/'. $config['site']['path'] .'/');
29