]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - config.php.sample
Merge commit 'jeff-themovie/0.8.x-rss-1.0-descriptions' into 0.8.x
[quix0rs-gnu-social.git] / config.php.sample
1 <?php
2 /* -*- mode: php -*- */
3
4 if (!defined('LACONICA')) { exit(1); }
5
6 // If you have downloaded libraries in random little places, you
7 // can add the paths here
8
9 // $extra_path = array("/opt/php-openid-2.0.1", "/usr/local/share/php");
10 // set_include_path(implode(PATH_SEPARATOR, $extra_path) . PATH_SEPARATOR . get_include_path());
11
12 // We get called by common.php, $config is a tree with lots of config
13 // options
14 // These are for configuring your URLs
15
16 $config['site']['name'] = 'Just another Laconica microblog';
17 $config['site']['server'] = 'localhost';
18 $config['site']['path'] = 'laconica';
19 // $config['site']['fancy'] = false;
20 // $config['site']['theme'] = 'default';
21 // Sets the site's default design values
22 // $config['design']['backgroundcolor'] = '#F0F2F5';
23 // $config['design']['contentcolor'] = '#FFFFFF';
24 // $config['design']['sidebarcolor'] = '#CEE1E9';
25 // $config['design']['textcolor'] = '#000000';
26 // $config['design']['linkcolor'] = '#002E6E';
27 // $config['design']['backgroundimage'] = null;
28 // $config['design']['disposition'] = 1;
29 // To enable the built-in mobile style sheet, defaults to false.
30 // $config['site']['mobile'] = true;
31 // For contact email, defaults to $_SERVER["SERVER_ADMIN"]
32 // $config['site']['email'] = 'admin@example.net';
33 // Brought by...
34 // $config['site']['broughtby'] = 'Individual or Company';
35 // $config['site']['broughtbyurl'] = 'http://example.net/';
36 // If you don't want to let users register (say, for a one-person install)
37 // Crude but effective -- register everybody, then lock down
38 // $config['site']['closed'] = true;
39 // Only allow registration for people invited by another user
40 // $config['site']['inviteonly'] = true;
41 // Make the site invisible to  non-logged-in users
42 // $config['site']['private'] = true;
43
44 // If you want logging sent to a file instead of syslog
45 // $config['site']['logfile'] = '/tmp/laconica.log';
46
47 // Change the syslog facility that Laconica logs to (default is LOG_USER)
48 // $config['syslog']['facility'] = LOG_LOCAL7;
49
50 // Enables extra log information, for example full details of PEAR DB errors
51 // $config['site']['logdebug'] = true;
52
53 // To set your own logo, overriding the one in the theme
54 // $config['site']['logo'] = '/mylogo.png';
55
56 // This is a PEAR DB DSN, see http://pear.php.net/manual/en/package.database.db.intro-dsn.php
57 // Set it to match your actual database
58
59 $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica';
60 // $config['db']['ini_your_db_name'] = $config['db']['schema_location'].'/laconica.ini';
61 // *** WARNING *** WARNING *** WARNING *** WARNING ***
62 // Setting debug to a non-zero value will expose your DATABASE PASSWORD to Web users.
63 // !!!!!! DO NOT SET THIS ON PRODUCTION SERVERS !!!!!! DB_DataObject's bug, btw, not
64 // ours.
65 // *** WARNING *** WARNING *** WARNING *** WARNING ***
66 // $config['db']['debug'] = 0;
67 // $config['db']['db_driver'] = 'MDB2';
68
69 // Database type. For mysql, these defaults are fine. For postgresql, set
70 // 'quote_identifiers' to true and 'type' to 'pgsql':
71 // $config['db']['quote_identifiers'] = false;
72 // $config['db']['type'] = 'mysql';
73
74 // session_set_cookie_params(0, '/'. $config['site']['path'] .'/');
75
76 // Standard fancy-url clashes prevented by not allowing nicknames on a blacklist
77 // Add your own here. Note: empty array by default
78 // $config['nickname']['blacklist'][] = 'scobleizer';
79
80 // sphinx search
81 $config['sphinx']['enabled'] = false;
82 $config['sphinx']['server'] = 'localhost';
83 $config['sphinx']['port'] = 3312;
84
85 // Users to populate the 'Featured' tab
86 // $config['nickname']['featured'][] = 'scobleizer';
87
88 // xmpp
89 // $config['xmpp']['enabled'] = false;
90 // $config['xmpp']['server'] = 'server.example.net';
91 // $config['xmpp']['host'] = NULL;      // Only set if different from server
92 // $config['xmpp']['port'] = 5222;
93 // $config['xmpp']['user'] = 'update';
94 // $config['xmpp']['encryption'] = false;
95 // $config['xmpp']['resource'] = 'uniquename';
96 // $config['xmpp']['password'] = 'blahblahblah';
97 // $config['xmpp']['public'][] = 'someindexer@example.net';
98 // $config['xmpp']['debug'] = false;
99
100 // Turn off invites
101 // $config['invite']['enabled'] = false;
102
103 // Default locale info
104 // $config['site']['timezone'] = 'Pacific/Auckland';
105 // $config['site']['language'] = 'en_NZ';
106
107 // Email info, used for all outbound email
108 // $config['mail']['notifyfrom'] = 'microblog@example.net';
109 // $config['mail']['domain'] = 'microblog.example.net';
110 // See http://pear.php.net/manual/en/package.mail.mail.factory.php for options
111 // $config['mail']['backend'] = 'smtp';
112 // $config['mail']['params'] = array(
113 //                                                      'host' => 'localhost',
114 //                                                      'port' => 25,
115 //                                                      );
116 // For incoming email, if enabled. Defaults to site server name.
117 // $config['mail']['domain'] = 'incoming.example.net';
118
119 // exponential decay factor for tags, default 10 days
120 // raise this if traffic is slow, lower it if it's fast
121 // $config['tag']['dropoff'] = 86400.0 * 10;
122
123 // exponential decay factor for popular (most favorited notices)
124 // default 10 days -- similar to tag dropoff
125 // $config['popular']['dropoff'] = 86400.0 * 10;
126
127 // optionally show non-local messages in public timeline
128 // $config['public']['localonly'] = false;
129
130 // hide certain users from public pages, by ID
131 // $config['public']['blacklist'][] = 123;
132 // $config['public']['blacklist'][] = 2307;
133
134 // Mark certain notice sources as automatic and thus not
135 // appropriate for public feed
136 // $config['public]['autosource'][] = 'twitterfeed';
137 // $config['public]['autosource'][] = 'rssdent';
138 // $config['public]['autosource'][] = 'Ping.Fm';
139 // $config['public]['autosource'][] = 'HelloTxt';
140 // $config['public]['autosource'][] = 'Updating.Me';
141
142 // Do notice broadcasts offline
143 // If you use this, you must run the six offline daemons in the
144 // background. See the README for details.
145 // $config['queue']['enabled'] = true;
146
147 // Queue subsystem
148 // subsystems: internal (default) or stomp
149 // using stomp requires an external message queue server
150 // $config['queue']['subsystem'] = 'stomp';
151 // $config['queue']['stomp_server'] = 'tcp://localhost:61613';
152 // use different queue_basename for each laconica instance managed by the server
153 // $config['queue']['queue_basename'] = 'laconica';
154
155 // The following customise the behaviour of the various daemons:
156 // $config['daemon']['piddir'] = '/var/run';
157 // $config['daemon']['user'] = false;
158 // $config['daemon']['group'] = false;
159
160 // For installations with high traffic, laconica can use MemCached to cache
161 // frequently requested information. Only enable the following if you have
162 // MemCached up and running:
163 // $config['memcached']['enabled'] = false;
164 // $config['memcached']['server'] = 'localhost';
165 // $config['memcached']['port'] = 11211;
166
167 // Disable post-by-email
168 // $config['emailpost']['enabled'] = false;
169
170 // Disable SMS
171 // $config['sms']['enabled'] = false;
172
173 // Disable Twitter integration
174 // $config['twitter']['enabled'] = false;
175
176 // Twitter integration source attribute. Note: default is Laconica
177 // $config['integration']['source'] = 'Laconica';
178
179 // Enable bidirectional Twitter bridge
180 //
181 // NOTE: if you enable this you must also set $config['avatar']['path']
182 //
183 // $config['twitterbridge']['enabled'] = true;
184
185 // Edit throttling. Off by default. If turned on, you can only post 20 notices
186 // every 10 minutes. Admins may want to play with the settings to minimize inconvenience for
187 // real users without getting uncontrollable floods from spammers or runaway bots.
188
189 // $config['throttle']['enabled'] = true;
190 // $config['throttle']['count'] = 100;
191 // $config['throttle']['timespan'] = 3600;
192
193 // List of users banned from posting (nicknames and/or IDs)
194 // $config['profile']['banned'][] = 'hacker';
195 // $config['profile']['banned'][] = 12345;
196
197 // Config section for the built-in Facebook application
198 // $config['facebook']['apikey'] = 'APIKEY';
199 // $config['facebook']['secret'] = 'SECRET';
200
201 // Add Google Analytics
202 // require_once('plugins/GoogleAnalyticsPlugin.php');
203 // $ga = new GoogleAnalyticsPlugin('your secret code');
204
205 // Use Templating (template: /tpl/index.php)
206 // require_once('plugins/TemplatePlugin.php');
207 // $tpl = new TemplatePlugin();
208
209 // Don't allow saying the same thing more than once per hour
210 // $config['site']['dupelimit'] = 3600;
211 // Don't enforce the dupe limit
212 // $config['site']['dupelimit'] = -1;
213
214 // Base string for minting Tag URIs in Atom feeds. Defaults to
215 // "yourserver,2009". This needs to be configured properly for your Atom
216 // feeds to validate.  See: http://www.faqs.org/rfcs/rfc4151.html and
217 // http://taguri.org/ Examples:
218 // $config['integration']['taguri'] = 'example.net,2008';
219 // $config['integration']['taguri'] = 'admin@example.net,2009-03-09'
220
221 // Don't use SSL
222 // $config['site']['ssl'] = 'never';
223 // Use SSL only for sensitive pages (like login, password change)
224 // $config['site']['ssl'] = 'sometimes';
225 // Use SSL for all pages
226 // $config['site']['ssl'] = 'always';
227
228 // Use a different hostname for SSL-encrypted pages
229 // $config['site']['sslserver'] = 'secure.example.org';
230
231 // If you have a lot of status networks on the same server, you can
232 // store the site data in a database and switch as follows
233 // Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');
234 // if (!Status_network::setupSite($_server, $_path)) {
235 //        print "Error\n";
236 //        exit(1);
237 // }
238
239 // How often to send snapshots; in # of web hits. Ideally,
240 // try to do this once per month (that is, make this equal to number
241 // of hits per month)
242 // $config['snapshot']['frequency'] = 10000;
243 // If you don't want to report statistics to the central server, uncomment.
244 // $config['snapshot']['run'] = 'never';
245 // If you want to report statistics in a cron job instead.
246 // $config['snapshot']['run'] = 'cron';
247
248 // Support for file uploads (attachments),
249 // select supported mimetypes and quotas (in bytes)
250 // $config['attachments']['supported'] = array('image/png', 'application/ogg');
251 // $config['attachments']['file_quota'] = 5000000;
252 // $config['attachments']['user_quota'] = 50000000;
253 // $config['attachments']['monthly_quota'] = 15000000;
254 // $config['attachments']['uploads'] = true;
255
256 // $config['oohembed']['endpoint'] = 'http://oohembed.com/oohembed/';