3 * @copyright Copyright (C) 2010-2023, the Friendica project
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 // Port of the database server.
37 // Can be used instead of adding a port number to the hostname
41 // Socket of the database server.
42 // Can be used instead of adding a socket location to the hostname
46 // Database username. Please don't use "root".
50 // Database user password. Please don't use empty passwords.
58 // Database connection charset. Changing this value will likely corrupt special characters.
59 'charset' => 'utf8mb4',
61 // pdo_emulate_prepares (Boolean)
62 // If enabled, the builtin emulation for prepared statements is used.
63 // This can be used as a workaround for the database error "Prepared statement needs to be re-prepared".
64 'pdo_emulate_prepares' => true,
66 // disable_pdo (Boolean)
67 // PDO is used by default (if available). Otherwise, MySQLi will be used.
68 'disable_pdo' => false,
70 // persistent (Boolean)
71 // This controls if the system should use persistent connections or not.
72 // Persistent connections increase the performance.
73 // On the other hand the number of open connections are higher,
74 // this will most likely increase the system load.
75 'persistent' => false,
78 // admin_email (Comma-separated list)
79 // In order to perform system administration via the admin panel,
80 // this must precisely match the email address of the person logged in.
83 // admin_nickname (String)
84 // Nickname of the main admin user, used if there are more than one admin user defined in config => admin_email.
85 'admin_nickname' => '',
87 // max_import_size (Integer)
88 // Maximum body size of DFRN and Mail messages in characters. 0 is unlimited.
89 'max_import_size' => 200000,
92 // Location of PHP command line processor.
96 // adjust_poll_frequency (Boolean)
97 // Automatically detect and set the best feed poll frequency.
98 'adjust_poll_frequency' => false,
100 // allowed_link_protocols (Array)
101 // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
102 'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
104 // always_show_preview (Boolean)
105 // Only show small preview pictures.
106 'always_show_preview' => false,
108 // ap_always_bcc (Boolean)
109 // Addresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance.
110 'ap_always_bcc' => false,
112 // archival_days (Integer)
113 // Number of days that we try to deliver content before we archive a contact.
114 'archival_days' => 32,
116 // auth_cookie_lifetime (Integer)
117 // Number of days that should pass without any activity before a user who
118 // chose "Remember me" when logging in is considered logged out.
119 'auth_cookie_lifetime' => 7,
121 // avatar_cache (Boolean)
122 // Cache avatar pictures as files (experimental)
123 'avatar_cache' => false,
125 // avatar_cache_path (String)
126 // File path to the avatar cache. Default is /(your basepath)/avatar/
127 // The value has to be an absolute path and has to end with a "/"
128 'avatar_cache_path' => '',
130 // avatar_cache_url (String)
131 // Base URL of the avatar cache. Default is http(s)://(your hostname)/avatar/
132 // The value has to start with the scheme and end with a "/"
133 'avatar_cache_url' => '',
135 // basicauth (Boolean)
136 // Controls if login via BasicAuth is possible (default is true)
139 // big_emojis (Boolean)
140 // Display "Emoji Only" posts in big.
141 'big_emojis' => false,
143 // bulk_delivery (Boolean)
144 // Delivers AP messages in a bulk (experimental)
145 'bulk_delivery' => false,
147 // block_local_dir (Boolean)
148 // Deny public access to the local user directory.
149 'block_local_dir' => false,
151 // blocked_tags (String)
152 // Comma separated list of hashtags that shouldn't be displayed in the trending tags
153 'blocked_tags' => '',
155 // community_no_sharer (Boolean)
156 // Don't display sharing accounts on the global community
157 'community_no_sharer' => false,
159 // contact_update_limit (Integer)
160 // How many contacts should be checked at a time?
161 'contact_update_limit' => 100,
163 // cron_interval (Integer)
164 // Minimal period in minutes between two calls of the "Cron" worker job.
165 'cron_interval' => 5,
167 // cache_driver (database|memcache|memcached|redis|apcu)
168 // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
169 'cache_driver' => 'database',
171 // decoupled_receiver (Boolean)
172 // Decouple incoming AP posts by doing the processing in the background.
173 'decoupled_receiver' => false,
175 // distributed_cache_driver (database|memcache|memcached|redis)
176 // Whether to use database, Memcache, Memcached or Redis as a distributed cache.
177 'distributed_cache_driver' => 'database',
179 // fetch_parents (Boolean)
180 // Fetch missing parent posts
181 'fetch_parents' => true,
183 // config_adapter (jit|preload)
184 // Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
185 'config_adapter' => 'jit',
187 // curl_range_bytes (Integer)
188 // Maximum number of bytes that should be fetched. Default is 0, which mean "no limit".
189 'curl_range_bytes' => 0,
191 // crawl_permit_period (Integer)
192 // Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated.
193 'crawl_permit_period' => 60,
196 // Name of a logfile to log slow database queries.
199 // db_log_index (Path)
200 // Name of a logfile to log queries with bad indexes.
201 'db_log_index' => '',
203 // db_log_index_watch (Comma-separated list)
204 // Watchlist of indexes to watch.
205 'db_log_index_watch' => '',
207 // db_log_index_denylist (Comma-separated list)
208 // Deny list of indexes that shouldn't be watched.
209 'db_log_index_denylist' => '',
211 // db_loglimit (Integer)
212 // If a database call lasts longer than this value in seconds it is logged.
213 // Inactive if system => db_log is empty.
216 // db_loglimit_index (Integer)
217 // Number of index rows needed to be logged for indexes on the watchlist. 0 to disable.
218 'db_loglimit_index' => 0,
220 // db_loglimit_index_high (Integer)
221 // Number of index rows to be logged anyway (for any index). 0 to disable.
222 'db_loglimit_index_high' => 0,
224 // dbclean_expire_conversation (Integer)
225 // When DBClean is enabled, any entry in the conversation table will be deleted after this many days.
226 // This data is used for ActivityPub, so it shouldn't be lower than the average duration of a discussion.
227 'dbclean_expire_conversation' => 90,
229 // dbclean-expire-limit (Integer)
230 // This defines the number of items that are to be deleted in a single call.
231 // Reduce this value when you are getting lock issues.
232 // A value of 0 disables the deletion process.
233 'dbclean-expire-limit' => 1000,
235 // daemon_watchdog (Boolean)
236 // Enable regular checking if the daemon is running.
237 // If it is not running and hadn't been terminated normally, it will be started automatically.
238 'daemon_watchdog' => false,
240 // delete_sleeping_processes (Boolean)
241 // Periodically delete waiting database processes.
242 'delete_sleeping_processes' => false,
244 // delete-blocked-servers (Boolean)
245 // Delete blocked servers if there are no foreign key violations.
246 'delete-blocked-servers' => false,
248 // dice_profiler_threshold (Float)
249 // For profiling Dice class creation (0 = disabled, >0 = seconds threshold for profiling)
250 'dice_profiler_threshold' => 0.5,
252 // diaspora_test (Boolean)
253 // For development only. Disables the message transfer.
254 'diaspora_test' => false,
256 // disable_email_validation (Boolean)
257 // Disables the check if a mail address is in a valid format and can be resolved via DNS.
258 'disable_email_validation' => false,
260 // disable_implicit_mentions (Boolean) since 2019.03
261 // Implicit mentions are mentions in the body of replies that are redundant in a thread-enabled system like Friendica.
262 // This config key disables the gathering of implicit mentions in incoming and outgoing posts.
263 // Also disables the default automatic removal of implicit mentions from the body of incoming posts.
264 // Also disables the default automatic addition of implicit mentions in the body of outgoing posts.
265 // Disabling implicit mentions also affects the "explicit_mentions" additional feature by limiting it
266 // to the replied-to post author mention in the comment boxes.
267 'disable_implicit_mentions' => false,
269 // disable_url_validation (Boolean)
270 // Disables the DNS lookup of a URL.
271 'disable_url_validation' => false,
273 // disable_password_exposed (Boolean)
274 // Disable the exposition check against the remote haveibeenpwned API on password change.
275 'disable_password_exposed' => false,
277 // disable_polling (Boolean)
278 // Disable the polling of DFRN and OStatus contacts through onepoll.php.
279 'disable_polling' => false,
281 // display_resharer (Boolean)
282 // Display the first resharer as icon and text on a reshared item.
283 'display_resharer' => false,
286 // location of the developer log file.
290 // restricts develop log writes to requests originating from this IP address.
293 // emoji_activities (Boolean)
294 // Display received activities (like, dislike, reshare) as emojis
295 'emoji_activities' => false,
297 // expire-notify-priority (integer)
298 // Priority for the expiry notification
299 'expire-notify-priority' => Friendica\Core\Worker::PRIORITY_LOW,
301 // fetch_by_worker (Boolean)
302 // Fetch missing posts via a background process
303 'fetch_by_worker' => false,
305 // fetch_featured_posts (Boolean)
306 // Fetch featured posts from all contacts
307 'fetch_featured_posts' => false,
309 // free_crawls (Integer)
310 // Number of "free" searches when system => permit_crawling is enabled.
313 // circle_edit_image_limit (Integer)
314 // Number of contacts at which the circle editor should switch from display the profile pictures of the contacts to only display the names.
315 // This can alternatively be set on a per-account basis in the pconfig table.
316 'circle_edit_image_limit' => 400,
318 // gserver_update_limit (Integer)
319 // How many servers should be checked at a time?
320 'gserver_update_limit' => 100,
323 // Enables the sending of HTTP Strict Transport Security headers.
326 // ignore_cache (Boolean)
327 // For development only. Disables the item cache.
328 'ignore_cache' => false,
330 // insecure_imap (Boolean)
331 // If enabled, users are allowed to connect to their IMAP servers unencrypted.
332 // For security reasons this is disabled by default.
333 'insecure_imap' => false,
335 // instances_social_key (String)
336 // Key to the API of https://instances.social which retrieves data about mastodon servers.
337 // See https://instances.social/api/token to get an API key.
338 'instances_social_key' => '',
340 // ipv4_resolve (Boolean)
341 // Resolve IPV4 addresses only. Don't resolve to IPV6.
342 'ipv4_resolve' => false,
344 // ini_max_execution_time (False|Integer)
345 // Set the number of seconds a script is allowed to run. Default unlimited for Friendica, false to use the system value.
346 'ini_max_execution_time' => 0,
348 // ini_pcre_backtrack_limit (False|Integer)
349 // This has to be quite large to deal with embedded private photos. False to use the system value.
350 'ini_pcre_backtrack_limit' => 500000,
352 // interaction_score_days (Integer)
353 // Number of days that are used to calculate the interaction score.
354 'interaction_score_days' => 30,
356 // invitation_only (Boolean)
357 // If set true registration is only possible after a current member of the node has sent an invitation.
358 'invitation_only' => false,
360 // itemspage_network (Integer)
361 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
362 'itemspage_network' => 40,
364 // itemspage_network_mobile (Integer)
365 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
366 // on detected mobile devices
367 'itemspage_network_mobile' => 20,
369 // jpeg_quality (Integer)
371 // Lower numbers save space at cost of image detail
372 // where n is between 1 and 100, and with very poor results below about 50
373 'jpeg_quality' => 100,
375 // like_no_comment (Boolean)
376 // Don't update the "commented" value of an item when it is liked.
377 'like_no_comment' => false,
379 // local_block (Boolean)
380 // Used in conjunction with "block_public".
381 'local_block' => false,
383 // local_search (Boolean)
384 // Blocks search for users who are not logged in to prevent crawlers from blocking your system.
385 'local_search' => false,
387 // local_tags (Boolean)
388 // If activated, all hashtags will point to the local server.
389 'local_tags' => false,
391 // lock_driver (semaphore|database|memcache|memcached|redis|apcu)
392 // Whether to use semaphores, the database, Memcache, Memcached, Redis or APCu to handle locks.
393 // Default is auto detection which tries semaphores first, then falls back to the cache driver.
396 // logger_config (String)
397 // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
398 'logger_config' => 'stream',
400 // syslog flags (Integer)
401 // Sets the syslog flags in case 'logger_config' is set to 'syslog'
402 'syslog_flags' => LOG_CONS | LOG_PID | LOG_ODELAY,
404 // syslog flags (Integer)
405 // Sets the syslog facility in case 'logger_config' is set to 'syslog'
406 'syslog_facility' => LOG_USER,
408 // maintenance_start (String)
409 // Start of the window for the daily maintenance cron call.
410 // The system timezone is used when no timezone is defined here.
411 'maintenance_start' => '01:00 +00:00',
413 // maintenance_end (String)
414 // End of the window for the daily maintenance cron call
415 // The system timezone is used when no timezone is defined here.
416 'maintenance_end' => '03:00 +00:00',
418 // max_batch_queue (Integer)
419 // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
420 'max_batch_queue' => 1000,
422 // max_connections (Integer)
423 // The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
424 // When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
425 'max_connections' => 0,
427 // max_connections_level (Integer 0-100)
428 // The maximum percentage of connections that are allowed to let the worker start.
429 'max_connections_level' => 75,
431 // max_contact_queue (Integer)
432 // Maximum number of queue items for a single contact before subsequent messages are discarded.
433 'max_contact_queue' => 500,
435 // max_csv_file_size (Integer)
436 // When uploading a CSV with account addresses to follow
437 // in the user settings, this controls the maximum file
438 // size of the upload file.
439 'max_csv_file_size' => 30720,
441 // max_feed_items (Integer)
442 // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
443 'max_feed_items' => 20,
445 // max_image_length (Integer)
446 // An alternate way of limiting picture upload sizes.
447 // Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
448 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
449 // If you don't want to set a maximum length, set to -1.
450 'max_image_length' => -1,
452 // max_likers (Integer)
453 // Maximum number of "people who like (or don't like) this" that we will list by name
456 // max_processes_backend (Integer)
457 // Maximum number of concurrent database processes for background tasks.
458 'max_processes_backend' => 5,
460 // max_processes_frontend (Integer)
461 // Maximum number of concurrent database processes for foreground tasks.
462 'max_processes_frontend' => 20,
464 // max_recursion_depth (Integer)
465 // Maximum recursion depth when fetching posts until the job is delegated to a worker task or finished.
466 'max_recursion_depth' => 50,
468 // maximagesize (Integer)
469 // Maximum size in bytes of an uploaded photo.
470 'maximagesize' => 800000,
472 // memcache_host (String)
473 // Host name of the memcache daemon.
474 'memcache_host' => '127.0.0.1',
476 // memcache_port (Integer)
477 // Port number of the memcache daemon.
478 'memcache_port' => 11211,
480 // memcached_hosts (Array)
481 // Array of Memcached servers info [host, port(, weight)], see Memcached::addServers.
482 'memcached_hosts' => [
483 ['127.0.0.1', '11211'],
486 // min_poll_interval (Integer)
487 // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
488 'min_poll_interval' => 15,
490 // minimum_posting_interval (Integer)
491 // Minimum interval between two feed posts per user
492 'minimum_posting_interval' => 0,
494 // no_count (Boolean)
495 // Don't do count calculations (currently only when showing photo albums).
498 // no_oembed (Boolean)
499 // Don't use OEmbed to fetch more information about a link.
500 'no_oembed' => false,
502 // no_redirect_list (Array)
503 // List of domains where HTTP redirects should be ignored.
504 'no_redirect_list' => [],
506 // no_smilies (Boolean)
507 // Don't show smilies.
508 'no_smilies' => false,
510 // optimize_all_tables (Boolean)
511 // Optimizes all tables instead of only tables like workerqueue or the cache
512 'optimize_all_tables' => false,
514 // paranoia (Boolean)
515 // Log out users if their IP address changed.
518 // permit_crawling (Boolean)
519 // Restricts the search for not logged-in users to one search per minute.
520 'permit_crawling' => false,
523 // Daemon pid file path. For example: pidfile = /path/to/daemon.pid
526 // png_quality (Integer)
527 // Sets the ImageMagick compression level for PNG images. Values range from 0 (uncompressed) to 9 (most compressed).
530 // process_view (Boolean)
531 // Process the "View" activity that is used by Peertube. View activities are displayed, when "emoji_activities" are enabled.
532 'process_view' => false,
534 // profiler (Boolean)
535 // Enable internal timings to help optimize code. Needed for "rendertime" addon.
538 // pushpoll_frequency (Integer)
539 // Frequency of contact poll for subhub contact using the DFRN or OStatus network.
546 // - 0 = every minute
547 'pushpoll_frequency' => 3,
549 // redis_host (String)
550 // Host name or the path to the Unix domain socket of the Redis daemon.
551 'redis_host' => '127.0.0.1',
553 // redis_port (Integer)
554 // Port number of the Redis daemon, should be -1 for unix domain socket
555 'redis_port' => 6379,
557 // redis_db (Integer)
558 // The sub-database of redis (0 - 15 possible sub-databases)
561 // redis_password (String)
562 // The authentication password for the redis database
563 'redis_password' => null,
565 // redistribute_activities (Boolean)
566 // Redistribute incoming activities via ActivityPub
567 'redistribute_activities' => true,
569 // relay_deny_languages (Array)
570 // Array of languages (two digit format) that are rejected.
571 'relay_deny_languages' => [],
573 // relay_deny_undetected_language (Boolean)
574 // Deny undetected languages
575 'relay_deny_undetected_language' => false,
577 // session_handler (database|cache|native)
578 // Whether to use Cache to store session data or to use PHP native session storage.
579 'session_handler' => 'database',
581 // remote_avatar_lookup (Boolean)
582 // Perform an avatar lookup via the activated services for remote contacts
583 'remote_avatar_lookup' => false,
585 // remove_multiplicated_lines (Boolean)
586 // If enabled, multiple linefeeds in items are stripped to a single one.
587 'remove_multiplicated_lines' => false,
589 // runtime_ignore (Array)
590 // List of ignored commands for the runtime logging.
591 'runtime_ignore' => [],
593 // runtime_loglimit (Integer)
594 // The runtime is logged, When the program execution time is higher than this value.
595 'runtime_loglimit' => 0,
597 // sendmail_params (Boolean)
598 // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
599 // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
600 // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
601 'sendmail_params' => true,
603 // set_creation_date (Boolean)
604 // When enabled, the user can enter a creation date when composing a post.
605 'set_creation_date' => false,
607 // show_global_community_hint (Boolean)
608 // 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 at your node.
609 'show_global_community_hint' => false,
611 // show_received (Boolean)
612 // Show the received date along with the post creation date
613 'show_received' => true,
615 // show_received_seconds (Integer)
616 // Display the received date when the difference between received and created is higher than this.
617 'show_received_seconds' => 500,
619 // show_unsupported_addons (Boolean)
620 // Show all addons including the unsupported ones.
621 'show_unsupported_addons' => false,
623 // show_unsupported_themes (Boolean)
624 // Show all themes including the unsupported ones.
625 'show_unsupported_themes' => false,
627 // throttle_limit_day (Integer)
628 // Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
629 'throttle_limit_day' => 0,
631 // throttle_limit_week (Integer)
632 // Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
633 'throttle_limit_week' => 0,
635 // throttle_limit_month (Integer)
636 // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
637 'throttle_limit_month' => 0,
639 // transmit_pending_events (Boolean)
640 // Transmit pending events upon accepted contact request for groups
641 'transmit_pending_events' => false,
643 // update_active_contacts (Boolean)
644 // When activated, only public contacts will be activated regularly that are used for example in items or tags.
645 'update_active_contacts' => false,
647 // username_min_length (Integer)
648 // The minimum character length a username can be.
649 // This length is checked once the username has been trimmed and multiple spaces have been collapsed into one.
650 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
651 'username_min_length' => 3,
653 // username_max_length (Integer)
654 // The maximum character length a username can be.
655 // This length is checked once the username has been trimmed and multiple spaces have been collapsed into one.
656 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
657 'username_max_length' => 48,
659 // worker_cooldown (Float)
660 // Cooldown period in seconds before each worker function call.
661 'worker_cooldown' => 0,
663 // worker_debug (Boolean)
664 // If enabled, it prints out the number of running processes split by priority.
665 'worker_debug' => false,
667 // worker_fetch_limit (Integer)
668 // Number of worker tasks that are fetched in a single query.
669 'worker_fetch_limit' => 1,
671 // worker_fork (Boolean)
672 // Experimental setting. Use pcntl_fork to spawn a new worker process.
673 // Does not work when "worker_multiple_fetch" is enabled (Needs more testing)
674 'worker_fork' => false,
676 // worker_jpm (Boolean)
677 // If enabled, it prints out the jobs per minute.
678 'worker_jpm' => false,
680 // worker_jpm_range (String)
681 // List of minutes for the jobs per minute (JPM) calculation
682 'worker_jpm_range' => '1, 10, 60',
684 // worker_load_cooldown (Integer)
685 // Maximum load that causes a cooldown before each worker function call.
686 'worker_load_cooldown' => 0,
688 // worker_load_exponent (Integer)
689 // Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
690 // For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
691 // Setting 0 would allow maximum worker queues at all times, which is not recommended.
692 'worker_load_exponent' => 3,
694 // worker_max_duration (Array)
695 // Maximum runtime per priority. Worker processes that exceed this runtime will be terminated.
696 'worker_max_duration' => [
697 Friendica\Core\Worker::PRIORITY_CRITICAL => 720,
698 Friendica\Core\Worker::PRIORITY_HIGH => 10,
699 Friendica\Core\Worker::PRIORITY_MEDIUM => 60,
700 Friendica\Core\Worker::PRIORITY_LOW => 180,
701 Friendica\Core\Worker::PRIORITY_NEGLIGIBLE => 720
704 // worker_processes_cooldown (Integer)
705 // Maximum number per processes that causes a cooldown before each worker function call.
706 'worker_processes_cooldown' => 0,
708 // worker_multiple_fetch (Boolean)
709 // When activated, the worker fetches jobs for multiple workers (not only for itself).
710 // This is an experimental setting without knowing the performance impact.
711 // Does not work when "worker_fork" is enabled (Needs more testing)
712 'worker_multiple_fetch' => false,
714 // worker_defer_limit (Integer)
715 // Per default the systems tries delivering for 15 times before dropping it.
716 'worker_defer_limit' => 15,
718 // xrd_timeout (Integer)
719 // Timeout in seconds for fetching the XRD links and other requests with an expected shorter timeout
723 // forwarded_for_headers (String)
724 // A comma separated list of all allowed header values to retrieve the real client IP
725 // The headers are evaluated in order.
726 'forwarded_for_headers' => 'HTTP_X_FORWARDED_FOR',
728 // trusted_proxies (String)
729 // A comma separated list of all trusted proxies, which will get skipped during client IP retrieval
730 // IP ranges and CIDR notations are allowed
731 'trusted_proxies' => '',
734 // exp_themes (Boolean)
735 // Show experimental themes in user settings.
736 'exp_themes' => false,
739 // hide_eventlist (Boolean)
740 // Don't show the birthdays and events on the profile and network page.
741 'hide_eventlist' => false,
745 // Enable debug level for the jabber account synchronisation.
748 // Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
752 // native_photos (Boolean)
753 // If enabled, photos to Diaspora will be transmitted via the "photo" element instead of embedding them to the body.
754 // This is some visual improvement over the embedding but comes with the cost of losing accessibility.
755 // Is is disabled by default until Diaspora eventually will work on issue https://github.com/diaspora/diaspora/issues/8297
756 'native_photos' => false,
759 // ap_inbox_log (Boolean)
760 // Logs every call to /inbox as a JSON file in Friendica's temporary directory
761 'ap_inbox_log' => false,
763 // ap_inbox_store_untrusted (Boolean)
764 // Store untrusted content in the inbox entries
765 'ap_inbox_store_untrusted' => false,
767 // ap_log_unknown (Boolean)
768 // Logs every unknown ActivityPub activity
769 'ap_log_unknown' => false,
771 // ap_log_failure (Boolean)
772 // Logs every ActivityPub activity that couldn't be compacted
773 'ap_log_failure' => false,
775 // store_source (Boolean)
776 // Store the source of any post that arrived
777 'store_source' => false,
780 // config_dir (String)
781 // Base working directory for the templating engine, must be writeable by the webserver user
782 'config_dir' => 'view/smarty3',
784 // use_sub_dirs (Boolean)
785 // By default the template cache is stored in several subdirectories.
786 'use_sub_dirs' => true,
789 // mastodon_banner (String)
790 // Default banner image for Mastodon API, must be a relative path from the base Friendica folder
792 // Default picture credits:
793 // Author: Lostinlight <https://mastodon.xyz/@lightone>
794 // License: CC0 https://creativecommons.org/share-your-work/public-domain/cc0/
795 // Link to original work: https://gitlab.com/lostinlight/per_aspera_ad_astra/-/blob/master/friendica-404/friendica-promo-bubbles.jpg
796 'mastodon_banner' => '/images/friendica-banner.jpg',
800 // Wether the blocklist is publicly listed under /about (or in any later API)