3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 * This file declares the default values for the base config of Friendica.
22 * These configuration values aren't accessible from the admin settings page and custom values must be set in config/local.config.php
24 * Please don't edit this file directly as its content may change in the upcoming versions.
31 // Hostname or IP address of the database server.
32 // Can contain the port number with the syntax "hostname:port".
36 // Database user name. Please don't use "root".
40 // Database user password. Please don't use empty passwords.
48 // Database connection charset. Changing this value will likely corrupt special characters.
49 'charset' => 'utf8mb4',
51 // emulate_prepares (Boolean) (Experimental)
52 // If enabled, prepared statements will be emulated.
53 // In combination with MySQLi this will cast all return values to strings.
54 'emulate_prepares' => false,
56 // pdo_emulate_prepares (Boolean) (Experimental)
57 // If enabled, the builtin emulation for prepared statements is used.
58 // Due to limitations of that emulation (all return values are casted as strings)
59 // this will most likely cause issues and should not be used on production systems.
60 'pdo_emulate_prepares' => false,
62 // disable_pdo (Boolean)
63 // PDO is used by default (if available). Otherwise MySQLi will be used.
64 'disable_pdo' => false,
67 // admin_email (Comma-separated list)
68 // In order to perform system administration via the admin panel,
69 // this must precisely match the email address of the person logged in.
72 // admin_nickname (String)
73 // Nickname of the main admin user, used if there are more than one admin user defined in config => admin_email.
74 'admin_nickname' => '',
76 // max_import_size (Integer)
77 // Maximum body size of DFRN and Mail messages in characters. 0 is unlimited.
78 'max_import_size' => 200000,
81 // Location of PHP command line processor.
85 // allowed_link_protocols (Array)
86 // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
87 'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
89 // always_show_preview (Boolean)
90 // Only show small preview pictures.
91 'always_show_preview' => false,
93 // ap_always_bcc (Boolean)
94 // Adresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance.
95 'ap_always_bcc' => false,
97 // archival_days (Integer)
98 // Number of days that we try to deliver content before we archive a contact.
99 'archival_days' => 32,
101 // auth_cookie_lifetime (Integer)
102 // Number of days that should pass without any activity before a user who
103 // chose "Remember me" when logging in is considered logged out.
104 'auth_cookie_lifetime' => 7,
106 // big_emojis (Boolean)
107 // Display "Emoji Only" posts in big.
108 'big_emojis' => false,
110 // block_local_dir (Boolean)
111 // Deny public access to the local user directory.
112 'block_local_dir' => false,
114 // cron_interval (Integer)
115 // Minimal period in minutes between two calls of the "Cron" worker job.
116 'cron_interval' => 5,
118 // cache_driver (database|memcache|memcached|redis)
119 // Whether to use Memcache or Memcached or Redis to store temporary cache.
120 'cache_driver' => 'database',
122 // config_adapter (jit|preload)
123 // Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
124 'config_adapter' => 'jit',
126 // curl_range_bytes (Integer)
127 // Maximum number of bytes that should be fetched. Default is 0, which mean "no limit".
128 'curl_range_bytes' => 0,
130 // crawl_permit_period (Integer)
131 // Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated.
132 'crawl_permit_period' => 60,
135 // Name of a logfile to log slow database queries.
138 // db_log_index (Path)
139 // Name of a logfile to log queries with bad indexes.
140 'db_log_index' => '',
142 // db_log_index_watch (Comma-separated list)
143 // Watchlist of indexes to watch.
144 'db_log_index_watch' => '',
146 // db_log_index_denylist (Comma-separated list)
147 // Deny list of indexes that shouldn't be watched.
148 'db_log_index_denylist' => '',
150 // db_loglimit (Integer)
151 // If a database call lasts longer than this value in seconds it is logged.
152 // Inactive if system => db_log is empty.
155 // db_loglimit_index (Integer)
156 // Number of index rows needed to be logged for indexes on the watchlist. 0 to disable.
157 'db_loglimit_index' => 0,
159 // db_loglimit_index_high (Integer)
160 // Number of index rows to be logged anyway (for any index). 0 to disable.
161 'db_loglimit_index_high' => 0,
163 // dbclean_expire_conversation (Integer)
164 // When DBClean is enabled, any entry in the conversation table will be deleted after this many days.
165 // This data is used for ActivityPub, so it shouldn't be lower than the average duration of a discussion.
166 'dbclean_expire_conversation' => 90,
168 // dbclean-expire-limit (Integer)
169 // This defines the number of items that are to be deleted in a single call.
170 // Reduce this value when you are getting memory issues.
171 'dbclean-expire-limit' => 1000,
173 // diaspora_test (Boolean)
174 // For development only. Disables the message transfer.
175 'diaspora_test' => false,
177 // disable_email_validation (Boolean)
178 // Disables the check if a mail address is in a valid format and can be resolved via DNS.
179 'disable_email_validation' => false,
181 // disable_implicit_mentions (Boolean) since 2019.03
182 // Implicit mentions are mentions in the body of replies that are redundant in a thread-enabled system like Friendica.
183 // This config key disables the gathering of implicit mentions in incoming and outgoing posts.
184 // Also disables the default automatic removal of implicit mentions from the body of incoming posts.
185 // Also disables the default automatic addition of implicit mentions in the body of outgoing posts.
186 // Disabling implicit mentions also affects the "explicit_mentions" additional feature by limiting it
187 // to the replied-to post author mention in the comment boxes.
188 'disable_implicit_mentions' => false,
190 // disable_url_validation (Boolean)
191 // Disables the DNS lookup of an URL.
192 'disable_url_validation' => false,
194 // disable_password_exposed (Boolean)
195 // Disable the exposition check against the remote haveibeenpwned API on password change.
196 'disable_password_exposed' => false,
198 // disable_polling (Boolean)
199 // Disable the polling of DFRN and OStatus contacts through onepoll.php.
200 'disable_polling' => false,
203 // location of the developer log file.
207 // restricts develop log writes to requests originating from this IP address.
210 // free_crawls (Integer)
211 // Number of "free" searches when system => permit_crawling is enabled.
214 // frontend_worker_timeout (Integer)
215 // Value in minutes after we think that a frontend task was killed by the webserver.
216 'frontend_worker_timeout' => 10,
218 // groupedit_image_limit (Integer)
219 // Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
220 // This can alternatively be set on a per account basis in the pconfig table.
221 'groupedit_image_limit' => 400,
224 // Enables the sending of HTTP Strict Transport Security headers.
227 // ignore_cache (Boolean)
228 // For development only. Disables the item cache.
229 'ignore_cache' => false,
231 // insecure_imap (Boolean)
232 // If enabled, users are allowed to connect to their IMAP servers unencrypted.
233 // For security reasons this is disabled by default.
234 'insecure_imap' => false,
236 // instances_social_key (String)
237 // Key to the API of https://instances.social which retrieves data about mastodon servers.
238 // See https://instances.social/api/token to get an API key.
239 'instances_social_key' => '',
241 // ipv4_resolve (Boolean)
242 // Resolve IPV4 addresses only. Don't resolve to IPV6.
243 'ipv4_resolve' => false,
245 // invitation_only (Boolean)
246 // If set true registration is only possible after a current member of the node has send an invitation.
247 'invitation_only' => false,
249 // itemspage_network (Integer)
250 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
251 'itemspage_network' => 40,
253 // itemspage_network_mobile (Integer)
254 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
255 // on detected mobile devices
256 'itemspage_network_mobile' => 20,
258 // like_no_comment (Boolean)
259 // Don't update the "commented" value of an item when it is liked.
260 'like_no_comment' => false,
262 // local_block (Boolean)
263 // Used in conjunction with "block_public".
264 'local_block' => false,
266 // local_search (Boolean)
267 // Blocks search for users who are not logged in to prevent crawlers from blocking your system.
268 'local_search' => false,
270 // local_tags (Boolean)
271 // If activated, all hashtags will point to the local server.
272 'local_tags' => false,
274 // logger_config (String)
275 // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
276 'logger_config' => 'stream',
278 // max_batch_queue (Integer)
279 // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
280 'max_batch_queue' => 1000,
282 // max_connections (Integer)
283 // The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
284 // When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
285 'max_connections' => 0,
287 // max_connections_level (Integer 0-100)
288 // The maximum percentage of connections that are allowed to let the worker start.
289 'max_connections_level' => 75,
291 // max_contact_queue (Integer)
292 // Maximum number of queue items for a single contact before subsequent messages are discarded.
293 'max_contact_queue' => 500,
295 // max_feed_items (Integer)
296 // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
297 'max_feed_items' => 20,
299 // max_image_length (Integer)
300 // An alternate way of limiting picture upload sizes.
301 // Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
302 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
303 // If you don't want to set a maximum length, set to -1.
304 'max_image_length' => -1,
306 // max_processes_backend (Integer)
307 // Maximum number of concurrent database processes for background tasks.
308 'max_processes_backend' => 5,
310 // max_processes_frontend (Integer)
311 // Maximum number of concurrent database processes for foreground tasks.
312 'max_processes_frontend' => 20,
314 // maximagesize (Integer)
315 // Maximum size in bytes of an uploaded photo.
316 'maximagesize' => 800000,
318 // memcache_host (String)
319 // Host name of the memcache daemon.
320 'memcache_host' => '127.0.0.1',
322 // memcache_port (Integer)
323 // Port number of the memcache daemon.
324 'memcache_port' => 11211,
326 // memcached_hosts (Array)
327 // Array of Memcached servers info [host, port(, weight)], see Memcached::addServers.
328 'memcached_hosts' => [
329 ['127.0.0.1', '11211'],
332 // min_poll_interval (Integer)
333 // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
334 'min_poll_interval' => 1,
336 // no_count (Boolean)
337 // Don't do count calculations (currently only when showing photo albums).
340 // no_oembed (Boolean)
341 // Don't use OEmbed to fetch more information about a link.
342 'no_oembed' => false,
344 // no_smilies (Boolean)
345 // Don't show smilies.
346 'no_smilies' => false,
348 // optimize_items (Boolean)
349 // Triggers an SQL command to optimize the item table before expiring items.
350 'optimize_items' => false,
352 // paranoia (Boolean)
353 // Log out users if their IP address changed.
356 // permit_crawling (Boolean)
357 // Restricts the search for not logged in users to one search per minute.
358 'permit_crawling' => false,
361 // Daemon pid file path. For example: pidfile = /path/to/daemon.pid
364 // png_quality (Integer)
365 // Sets the ImageMagick compression level for PNG images. Values ranges from 0 (uncompressed) to 9 (most compressed).
368 // profiler (Boolean)
369 // Enable internal timings to help optimize code. Needed for "rendertime" addon.
372 // proxy_cache_time (Integer)
373 // Period in seconds after which the cache is cleared.
374 'proxy_cache_time' => 86400,
376 // pushpoll_frequency (Integer)
377 // Frequency of contact poll for subhub contact using the DFRM or OStatus network.
384 // - 0 = every minute
385 'pushpoll_frequency' => 3,
387 // queue_no_dead_check (Boolean)
388 // Ignore if the target contact or server seems to be dead during queue delivery.
389 'queue_no_dead_check' => false,
391 // redis_host (String)
392 // Host name of the redis daemon.
393 'redis_host' => '127.0.0.1',
395 // redis_port (String)
396 // Port number of the redis daemon.
397 'redis_port' => 6379,
399 // redis_db (Integer)
400 // The sub-database of redis (0 - 15 possible sub-databases)
403 // redis_password (String)
404 // The authentication password for the redis database
405 'redis_password' => null,
407 // session_handler (database|cache|native)
408 // Whether to use Cache to store session data or to use PHP native session storage.
409 'session_handler' => 'database',
411 // remove_multiplicated_lines (Boolean)
412 // If enabled, multiple linefeeds in items are stripped to a single one.
413 'remove_multiplicated_lines' => false,
415 // sendmail_params (Boolean)
416 // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
417 // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
418 // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
419 'sendmail_params' => true,
421 // show_global_community_hint (Boolean)
422 // When the global community page is enabled, use this option to display a hint above the stream, that this is a collection of all public top-level postings that arrive on your node.
423 'show_global_community_hint' => false,
425 // show_received (Boolean)
426 // Show the receive data along with the post creation date
427 'show_received' => true,
429 // show_received_seconds (Integer)
430 // Display the received date when the difference between received and created is higher than this.
431 'show_received_seconds' => 500,
433 // show_unsupported_addons (Boolean)
434 // Show all addons including the unsupported ones.
435 'show_unsupported_addons' => false,
437 // show_unsupported_themes (Boolean)
438 // Show all themes including the unsupported ones.
439 'show_unsupported_themes' => false,
441 // throttle_limit_day (Integer)
442 // Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
443 'throttle_limit_day' => 0,
445 // throttle_limit_week (Integer)
446 // Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
447 'throttle_limit_week' => 0,
449 // throttle_limit_month (Integer)
450 // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
451 'throttle_limit_month' => 0,
453 // username_min_length (Integer)
454 // The minimum character length a username can be.
455 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
456 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
457 'username_min_length' => 3,
459 // username_max_length (Integer)
460 // The maximum character length a username can be.
461 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
462 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
463 'username_max_length' => 48,
465 // worker_cooldown (Integer)
466 // Cooldown period in seconds after each worker function call.
467 'worker_cooldown' => 0,
469 // worker_debug (Boolean)
470 // If enabled, it prints out the number of running processes split by priority.
471 'worker_debug' => false,
473 // worker_fetch_limit (Integer)
474 // Number of worker tasks that are fetched in a single query.
475 'worker_fetch_limit' => 1,
477 // worker_jpm (Boolean)
478 // If enabled, it prints out the jobs per minute.
479 'worker_jpm' => false,
481 // worker_jpm_range (String)
482 // List of minutes for the jobs per minute (JPM) calculation
483 'worker_jpm_range' => '1, 10, 60',
485 // worker_load_exponent (Integer)
486 // Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
487 // For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
488 // Setting 0 would allow maximum worker queues at all times, which is not recommended.
489 'worker_load_exponent' => 3,
491 // worker_defer_limit (Integer)
492 // Per default the systems tries delivering for 15 times before dropping it.
493 'worker_defer_limit' => 15,
495 // xrd_timeout (Integer)
496 // Timeout in seconds for fetching the XRD links.
500 // exp_themes (Boolean)
501 // Show experimental themes in user settings.
502 'exp_themes' => false,
505 // hide_eventlist (Boolean)
506 // Don't show the birthdays and events on the profile and network page.
507 'hide_eventlist' => false,
511 // Enable debug level for the jabber account synchronisation.
514 // Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
518 // ap_inbox_log (Boolean)
519 // Logs every call to /inbox as a JSON file in Friendica's temporary directory
520 'ap_inbox_log' => false,
522 // show_direction (Boolean)
523 // Display if a post had been fetched or had been pushed towards our server
524 'show_direction' => false,
526 // total_ap_delivery (Boolean)
527 // Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
528 'total_ap_delivery' => false,