]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - config.php.sample
fix check in config.php.sample
[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
14 # This is a PEAR DB DSN, see http://pear.php.net/manual/en/package.database.db.intro-dsn.php
15 # Set it to match your actual database
16
17 $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica';
18
19