]> git.mxchange.org Git - friendica.git/blob - static/defaults.config.php
Posts per author/server on the community pages (#13764)
[friendica.git] / static / defaults.config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  * This file declares the default values for the base config of Friendica.
21  *
22  * These configuration values aren't accessible from the admin settings page and custom values must be set in config/local.config.php
23  *
24  * Please don't edit this file directly as its content may change in the upcoming versions.
25  *
26  */
27
28 return [
29         'database' => [
30                 // host (String)
31                 // Hostname or IP address of the database server.
32                 // Can contain the port number with the syntax "hostname:port".
33                 'hostname' => '',
34
35                 // port (Integer)
36                 // Port of the database server.
37                 // Can be used instead of adding a port number to the hostname
38                 'port' => null,
39
40                 // socket (String)
41                 // Socket of the database server.
42                 // Can be used instead of adding a socket location to the hostname
43                 'socket' => '',
44
45                 // user (String)
46                 // Database username. Please don't use "root".
47                 'username' => '',
48
49                 // pass (String)
50                 // Database user password. Please don't use empty passwords.
51                 'password' => '',
52
53                 // base (String)
54                 // Database name.
55                 'database' => '',
56
57                 // charset (String)
58                 // Database connection charset. Changing this value will likely corrupt special characters.
59                 'charset' => 'utf8mb4',
60
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,
65
66                 // disable_pdo (Boolean)
67                 // PDO is used by default (if available). Otherwise, MySQLi will be used.
68                 'disable_pdo' => false,
69
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,
76         ],
77         'config' => [
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.
81                 'admin_email' => '',
82
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' => '',
86
87                 // max_import_size (Integer)
88                 // Maximum body size of DFRN and Mail messages in characters. 0 is unlimited.
89                 'max_import_size' => 200000,
90
91                 // php_path (String)
92                 // Location of PHP command line processor.
93                 'php_path' => 'php',
94         ],
95         'system' => [
96                 // add_missing_posts (boolean)
97                 // Checks for missing entries in "post", "post-thread" or "post-thread-user" and creates them
98                 'add_missing_posts' => false,
99
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://'],
103
104                 // always_show_preview (Boolean)
105                 // Only show small preview pictures.
106                 'always_show_preview' => false,
107
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,
111
112                 // auth_cookie_lifetime (Integer)
113                 // Number of days that should pass without any activity before a user who
114                 // chose "Remember me" when logging in is considered logged out.
115                 'auth_cookie_lifetime' => 7,
116
117                 // avatar_cache (Boolean)
118                 // Cache avatar pictures as files (experimental)
119                 'avatar_cache' => false,
120
121                 // avatar_cache_path (String)
122                 // File path to the avatar cache. Default is /(your basepath)/avatar/
123                 // The value has to be an absolute path and has to end with a "/"
124                 'avatar_cache_path' => '',
125
126                 // avatar_cache_url (String)
127                 // Base URL of the avatar cache. Default is http(s)://(your hostname)/avatar/
128                 // The value has to start with the scheme and end with a "/"
129                 'avatar_cache_url' => '',
130
131                 // basicauth (Boolean)
132                 // Controls if login via BasicAuth is possible (default is true)
133                 'basicauth' => true,
134
135                 // big_emojis (Boolean)
136                 // Display "Emoji Only" posts in big.
137                 'big_emojis' => true,
138
139                 // bulk_delivery (Boolean)
140                 // Delivers AP messages in a bulk (experimental)
141                 'bulk_delivery' => false,
142
143                 // block_local_dir (Boolean)
144                 // Deny public access to the local user directory.
145                 'block_local_dir' => false,
146
147                 // contact_update_limit (Integer)
148                 // How many contacts should be checked at a time?
149                 'contact_update_limit' => 100,
150
151                 // cache_driver (database|memcache|memcached|redis|apcu)
152                 // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
153                 'cache_driver' => 'database',
154
155                 // distributed_cache_driver (database|memcache|memcached|redis)
156                 // Whether to use database, Memcache, Memcached or Redis as a distributed cache.
157                 'distributed_cache_driver' => 'database',
158
159                 // fetch_parents (Boolean)
160                 // Fetch missing parent posts
161                 'fetch_parents' => true,
162
163                 // config_adapter (jit|preload)
164                 // Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
165                 'config_adapter' => 'jit',
166
167                 // crawl_permit_period (Integer)
168                 // Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated.
169                 'crawl_permit_period' => 60,
170
171                 // db_log (Path)
172                 // Name of a logfile to log slow database queries.
173                 'db_log' => '',
174
175                 // db_log_index (Path)
176                 // Name of a logfile to log queries with bad indexes.
177                 'db_log_index' => '',
178
179                 // db_log_index_watch (Comma-separated list)
180                 // Watchlist of indexes to watch.
181                 'db_log_index_watch' => '',
182
183                 // db_log_index_denylist (Comma-separated list)
184                 // Deny list of indexes that shouldn't be watched.
185                 'db_log_index_denylist' => '',
186
187                 // db_loglimit (Integer)
188                 // If a database call lasts longer than this value in seconds it is logged.
189                 // Inactive if system => db_log is empty.
190                 'db_loglimit' => 10,
191
192                 // db_loglimit_index (Integer)
193                 // Number of index rows needed to be logged for indexes on the watchlist. 0 to disable.
194                 'db_loglimit_index' => 0,
195
196                 // db_loglimit_index_high (Integer)
197                 // Number of index rows to be logged anyway (for any index). 0 to disable.
198                 'db_loglimit_index_high' => 0,
199
200                 // dbclean_expire_conversation (Integer)
201                 // When DBClean is enabled, any entry in the conversation table will be deleted after this many days.
202                 // This data is used for ActivityPub, so it shouldn't be lower than the average duration of a discussion.
203                 'dbclean_expire_conversation' => 90,
204
205                 // dbclean-expire-limit (Integer)
206                 // This defines the number of items that are to be deleted in a single call.
207                 // Reduce this value when you are getting lock issues.
208                 // A value of 0 disables the deletion process.
209                 'dbclean-expire-limit' => 1000,
210
211                 // daemon_watchdog (Boolean)
212                 // Enable regular checking if the daemon is running.
213                 // If it is not running and hadn't been terminated normally, it will be started automatically.
214                 'daemon_watchdog' => false,
215
216                 // delete_sleeping_processes (Boolean)
217                 // Periodically delete waiting database processes.
218                 'delete_sleeping_processes' => false,
219
220                 // delete-blocked-servers (Boolean)
221                 // Delete blocked servers if there are no foreign key violations.
222                 'delete-blocked-servers' => false,
223
224                 // dice_profiler_threshold (Float)
225                 // For profiling Dice class creation (0 = disabled, >0 = seconds threshold for profiling)
226                 'dice_profiler_threshold' => 0.5,
227
228                 // diaspora_test (Boolean)
229                 // For development only. Disables the message transfer.
230                 'diaspora_test' => false,
231
232                 // disable_email_validation (Boolean)
233                 // Disables the check if a mail address is in a valid format and can be resolved via DNS.
234                 'disable_email_validation' => false,
235
236                 // disable_implicit_mentions (Boolean) since 2019.03
237                 // Implicit mentions are mentions in the body of replies that are redundant in a thread-enabled system like Friendica.
238                 // This config key disables the gathering of implicit mentions in incoming and outgoing posts.
239                 // Also disables the default automatic removal of implicit mentions from the body of incoming posts.
240                 // Also disables the default automatic addition of implicit mentions in the body of outgoing posts.
241                 // Disabling implicit mentions also affects the "explicit_mentions" additional feature by limiting it
242                 // to the replied-to post author mention in the comment boxes.
243                 'disable_implicit_mentions' => false,
244
245                 // disable_url_validation (Boolean)
246                 // Disables the DNS lookup of a URL.
247                 'disable_url_validation' => false,
248
249                 // disable_password_exposed (Boolean)
250                 // Disable the exposition check against the remote haveibeenpwned API on password change.
251                 'disable_password_exposed' => false,
252
253                 // display_resharer (Boolean)
254                 // Display the first resharer as icon and text on a reshared item.
255                 'display_resharer' => false,
256
257                 // dlogfile (Path)
258                 // location of the developer log file.
259                 'dlogfile' => '',
260
261                 // dlogip (String)
262                 // restricts develop log writes to requests originating from this IP address.
263                 'dlogip' => '',
264
265                 // legacy_activities (Boolean)
266                 // Display received activities (like, dislike, reshare) as detailed list
267                 'legacy_activities' => true,
268
269                 // expire-notify-priority (integer)
270                 // Priority for the expiry notification
271                 'expire-notify-priority' => Friendica\Core\Worker::PRIORITY_LOW,
272
273                 // fetch_featured_posts (Boolean)
274                 // Fetch featured posts from all contacts
275                 'fetch_featured_posts' => false,
276
277                 // free_crawls (Integer)
278                 // Number of "free" searches when system => permit_crawling is enabled.
279                 'free_crawls' => 10,
280
281                 // circle_edit_image_limit (Integer)
282                 // Number of contacts at which the circle editor should switch from display the profile pictures of the contacts to only display the names.
283                 // This can alternatively be set on a per-account basis in the pconfig table.
284                 'circle_edit_image_limit' => 400,
285
286                 // gserver_update_limit (Integer)
287                 // How many servers should be checked at a time?
288                 'gserver_update_limit' => 100,
289
290                 // hsts (Boolean)
291                 // Enables the sending of HTTP Strict Transport Security headers.
292                 'hsts' => false,
293
294                 // ignore_cache (Boolean)
295                 // For development only. Disables the item cache.
296                 'ignore_cache' => false,
297
298                 // insecure_imap (Boolean)
299                 // If enabled, users are allowed to connect to their IMAP servers unencrypted.
300                 // For security reasons this is disabled by default.
301                 'insecure_imap' => false,
302
303                 // instances_social_key (String)
304                 // Key to the API of https://instances.social which retrieves data about mastodon servers.
305                 // See https://instances.social/api/token to get an API key.
306                 'instances_social_key' => '',
307
308                 // ipv4_resolve (Boolean)
309                 // Resolve IPV4 addresses only. Don't resolve to IPV6.
310                 'ipv4_resolve' => false,
311
312                 // ini_max_execution_time (False|Integer)
313                 // Set the number of seconds a script is allowed to run. Default unlimited for Friendica, false to use the system value.
314                 'ini_max_execution_time' => 0,
315
316                 // ini_pcre_backtrack_limit (False|Integer)
317                 // This has to be quite large to deal with embedded private photos. False to use the system value.
318                 'ini_pcre_backtrack_limit' => 500000,
319
320                 // invitation_only (Boolean)
321                 // If set true registration is only possible after a current member of the node has sent an invitation.
322                 'invitation_only' => false,
323
324                 // like_no_comment (Boolean)
325                 // Don't update the "commented" value of an item when it is liked.
326                 'like_no_comment' => false,
327
328                 // limited_servers (String)
329                 // A comma separated list of server hostnames that should get limited profile data
330                 'limited_servers' => '',
331
332                 // local_tags (Boolean)
333                 // If activated, all hashtags will point to the local server.
334                 'local_tags' => true,
335
336                 // lock_driver (semaphore|database|memcache|memcached|redis|apcu)
337                 // Whether to use semaphores, the database, Memcache, Memcached, Redis or APCu to handle locks.
338                 // Default is auto detection which tries semaphores first, then falls back to the cache driver.
339                 'lock_driver' => '',
340
341                 // logger_config (String)
342                 // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
343                 'logger_config' => 'stream',
344
345                 // syslog_flags (Integer)
346                 // Sets the syslog flags in case 'logger_config' is set to 'syslog'
347                 'syslog_flags' => LOG_CONS | LOG_PID | LOG_ODELAY,
348
349                 // syslog_facility (Integer)
350                 // Sets the syslog facility in case 'logger_config' is set to 'syslog'
351                 'syslog_facility' => LOG_USER,
352
353                 // maintenance_start (String)
354                 // Start of the window for the daily maintenance cron call.
355                 // The system timezone is used when no timezone is defined here.
356                 'maintenance_start' => '01:00 +00:00',
357
358                 // maintenance_end (String)
359                 // End of the window for the daily maintenance cron call
360                 // The system timezone is used when no timezone is defined here.
361                 'maintenance_end' => '03:00 +00:00',
362
363                 // max_connections (Integer)
364                 // The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
365                 // When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
366                 'max_connections' => 0,
367
368                 // max_connections_level (Integer 0-100)
369                 // The maximum percentage of connections that are allowed to let the worker start.
370                 'max_connections_level' => 75,
371
372                 // max_csv_file_size (Integer)
373                 // When uploading a CSV with account addresses to follow
374                 // in the user settings, this controls the maximum file
375                 // size of the upload file.
376                 'max_csv_file_size' => 30720,
377
378                 // max_feed_items (Integer)
379                 // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
380                 'max_feed_items' => 20,
381
382                 // max_image_length (Integer)
383                 // An alternate way of limiting picture upload sizes.
384                 // Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
385                 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
386                 // If you don't want to set a maximum length, set to -1.
387                 'max_image_length' => -1,
388
389                 // max_likers (Integer)
390                 // Maximum number of "people who like (or don't like) this" that we will list by name
391                 'max_likers' => 75,
392
393                 // max_processes_backend (Integer)
394                 // Maximum number of concurrent database processes for background tasks.
395                 'max_processes_backend' => 5,
396
397                 // max_processes_frontend (Integer)
398                 // Maximum number of concurrent database processes for foreground tasks.
399                 'max_processes_frontend' => 20,
400
401                 // max_receivers (Integer)
402                 // The maximum number of displayed receivers of posts
403                 'max_receivers' => 10,
404
405                 // max_recursion_depth (Integer)
406                 // Maximum recursion depth when fetching posts until the job is delegated to a worker task or finished.
407                 'max_recursion_depth' => 50,
408
409                 // memcache_host (String)
410                 // Host name of the memcache daemon.
411                 'memcache_host' => '127.0.0.1',
412
413                 // memcache_port (Integer)
414                 // Port number of the memcache daemon.
415                 'memcache_port' => 11211,
416
417                 // memcached_hosts (Array)
418                 // Array of Memcached servers info [host, port(, weight)], see Memcached::addServers.
419                 'memcached_hosts' => [
420                         ['127.0.0.1', '11211'],
421                 ],
422
423                 // minimum_posting_interval (Integer)
424                 // Minimum interval between two feed posts per user
425                 'minimum_posting_interval' => 0,
426
427                 // no_count (Boolean)
428                 // Don't do count calculations (currently only when showing photo albums).
429                 'no_count' => false,
430
431                 // no_oembed (Boolean)
432                 // Don't use OEmbed to fetch more information about a link.
433                 'no_oembed' => false,
434
435                 // no_redirect_list (Array)
436                 // List of domains where HTTP redirects should be ignored.
437                 'no_redirect_list' => [],
438
439                 // no_smilies (Boolean)
440                 // Don't show smilies.
441                 'no_smilies' => false,
442
443                 // optimize_all_tables (Boolean)
444                 // Optimizes all tables instead of only tables like workerqueue or the cache
445                 'optimize_all_tables' => false,
446
447                 // paranoia (Boolean)
448                 // Log out users if their IP address changed.
449                 'paranoia' => false,
450
451                 // permit_crawling (Boolean)
452                 // Restricts the search for not logged-in users to one search per minute.
453                 'permit_crawling' => false,
454
455                 // pidfile (Path)
456                 // Daemon pid file path. For example: pidfile = /path/to/daemon.pid
457                 'pidfile' => '',
458
459                 // png_quality (Integer)
460                 // Sets the ImageMagick compression level for PNG images. Values range from 0 (uncompressed) to 9 (most compressed).
461                 'png_quality' => 8,
462
463                 // profiler (Boolean)
464                 // Enable internal timings to help optimize code. Needed for "rendertime" addon.
465                 'profiler' => false,
466
467                 // redis_host (String)
468                 // Host name or the path to the Unix domain socket of the Redis daemon.
469                 'redis_host' => '127.0.0.1',
470
471                 // redis_port (Integer)
472                 // Port number of the Redis daemon, should be -1 for unix domain socket
473                 'redis_port' => 6379,
474
475                 // redis_db (Integer)
476                 // The sub-database of redis (0 - 15 possible sub-databases)
477                 'redis_db' => 0,
478
479                 // redis_password (String)
480                 // The authentication password for the redis database
481                 'redis_password' => null,
482
483                 // redistribute_activities (Boolean)
484                 // Redistribute incoming activities via ActivityPub
485                 'redistribute_activities' => true,
486
487                 // session_handler (database|cache|native)
488                 // Whether to use Cache to store session data or to use PHP native session storage.
489                 'session_handler' => 'database',
490
491                 // remote_avatar_lookup (Boolean)
492                 // Perform an avatar lookup via the activated services for remote contacts
493                 'remote_avatar_lookup' => false,
494
495                 // remove_multiplicated_lines (Boolean)
496                 // If enabled, multiple linefeeds in items are stripped to a single one.
497                 'remove_multiplicated_lines' => false,
498
499                 // runtime_ignore (Array)
500                 // List of ignored commands for the runtime logging.
501                 'runtime_ignore' => [],
502
503                 // runtime_loglimit (Integer)
504                 // The runtime is logged, When the program execution time is higher than this value.
505                 'runtime_loglimit' => 0,
506
507                 // sendmail_params (Boolean)
508                 // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
509                 // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
510                 // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
511                 'sendmail_params' => true,
512
513                 // set_creation_date (Boolean)
514                 // When enabled, the user can enter a creation date when composing a post.
515                 'set_creation_date' => false,
516
517                 // show_global_community_hint (Boolean)
518                 // 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.
519                 'show_global_community_hint' => false,
520
521                 // show_received (Boolean)
522                 // Show the received date along with the post creation date
523                 'show_received' => true,
524
525                 // show_received_seconds (Integer)
526                 // Display the received date when the difference between received and created is higher than this.
527                 'show_received_seconds' => 500,
528
529                 // show_unsupported_addons (Boolean)
530                 // Show all addons including the unsupported ones.
531                 'show_unsupported_addons' => false,
532
533                 // show_unsupported_themes (Boolean)
534                 // Show all themes including the unsupported ones.
535                 'show_unsupported_themes' => false,
536
537                 // throttle_limit_day (Integer)
538                 // Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
539                 'throttle_limit_day' => 0,
540
541                 // throttle_limit_week (Integer)
542                 // Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
543                 'throttle_limit_week' => 0,
544
545                 // throttle_limit_month (Integer)
546                 // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
547                 'throttle_limit_month' => 0,
548
549                 // transmit_pending_events (Boolean)
550                 // Transmit pending events upon accepted contact request for groups
551                 'transmit_pending_events' => false,
552
553                 // username_min_length (Integer)
554                 // The minimum character length a username can be.
555                 // This length is checked once the username has been trimmed and multiple spaces have been collapsed into one.
556                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
557                 'username_min_length' => 3,
558
559                 // username_max_length (Integer)
560                 // The maximum character length a username can be.
561                 // This length is checked once the username has been trimmed and multiple spaces have been collapsed into one.
562                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
563                 'username_max_length' => 48,
564
565                 // worker_cooldown (Float)
566                 // Cooldown period in seconds before each worker function call.
567                 'worker_cooldown' => 0,
568
569                 // worker_debug (Boolean)
570                 // If enabled, it prints out the number of running processes split by priority.
571                 'worker_debug' => false,
572
573                 // worker_fork (Boolean)
574                 // Experimental setting. Use pcntl_fork to spawn a new worker process.
575                 // Does not work when "worker_multiple_fetch" is enabled (Needs more testing)
576                 'worker_fork' => false,
577
578                 // worker_jpm (Boolean)
579                 // If enabled, it prints out the jobs per minute.
580                 'worker_jpm' => false,
581
582                 // worker_jpm_range (String)
583                 // List of minutes for the jobs per minute (JPM) calculation
584                 'worker_jpm_range' => '1, 10, 60',
585
586                 // worker_load_exponent (Integer)
587                 // Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
588                 // For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
589                 // Setting 0 would allow maximum worker queues at all times, which is not recommended.
590                 'worker_load_exponent' => 3,
591
592                 // worker_max_duration (Array)
593                 // Maximum runtime per priority. Worker processes that exceed this runtime will be terminated.
594                 'worker_max_duration' => [
595                         Friendica\Core\Worker::PRIORITY_CRITICAL   => 720,
596                         Friendica\Core\Worker::PRIORITY_HIGH       => 10,
597                         Friendica\Core\Worker::PRIORITY_MEDIUM     => 60,
598                         Friendica\Core\Worker::PRIORITY_LOW        => 180,
599                         Friendica\Core\Worker::PRIORITY_NEGLIGIBLE => 720
600                 ],
601
602                 // worker_processes_cooldown (Integer)
603                 // Maximum number per processes that causes a cooldown before each worker function call.
604                 'worker_processes_cooldown' => 0,
605
606                 // worker_multiple_fetch (Boolean)
607                 // When activated, the worker fetches jobs for multiple workers (not only for itself).
608                 // This is an experimental setting without knowing the performance impact.
609                 // Does not work when "worker_fork" is enabled (Needs more testing)
610                 'worker_multiple_fetch' => false,
611
612                 // xrd_timeout (Integer)
613                 // Timeout in seconds for fetching the XRD links and other requests with an expected shorter timeout
614                 'xrd_timeout' => 20,
615         ],
616         'proxy' => [
617                 // forwarded_for_headers (String)
618                 // A comma separated list of all allowed header values to retrieve the real client IP
619                 // The headers are evaluated in order.
620                 'forwarded_for_headers' => 'HTTP_X_FORWARDED_FOR',
621
622                 // trusted_proxies (String)
623                 // A comma separated list of all trusted proxies, which will get skipped during client IP retrieval
624                 // IP ranges and CIDR notations are allowed
625                 'trusted_proxies' => '',
626         ],
627         'experimental' => [
628                 // exp_themes (Boolean)
629                 // Show experimental themes in user settings.
630                 'exp_themes' => false,
631         ],
632         'theme' => [
633                 // hide_eventlist (Boolean)
634                 // Don't show the birthdays and events on the profile and network page.
635                 'hide_eventlist' => false,
636         ],
637         'jabber' => [
638                 // debug (Boolean)
639                 // Enable debug level for the jabber account synchronisation.
640                 'debug' => false,
641                 // lockpath (Path)
642                 // Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
643                 'lockpath' => '',
644         ],
645         'diaspora' => [
646                 // native_photos (Boolean)
647                 // If enabled, photos to Diaspora will be transmitted via the "photo" element instead of embedding them to the body.
648                 // This is some visual improvement over the embedding but comes with the cost of losing accessibility.
649                 // Is is disabled by default until Diaspora eventually will work on issue https://github.com/diaspora/diaspora/issues/8297
650                 'native_photos' => false,
651         ],
652         'debug' => [
653                 // ap_inbox_log (Boolean)
654                 // Logs every call to /inbox as a JSON file in Friendica's temporary directory
655                 'ap_inbox_log' => false,
656
657                 // ap_inbox_store_untrusted (Boolean)
658                 // Store untrusted content in the inbox entries
659                 'ap_inbox_store_untrusted' => false,
660
661                 // ap_log_unknown (Boolean)
662                 // Logs every unknown ActivityPub activity
663                 'ap_log_unknown' => false,
664
665                 // ap_log_failure (Boolean)
666                 // Logs every ActivityPub activity that couldn't be compacted
667                 'ap_log_failure' => false,
668
669                 // store_source (Boolean)
670                 // Store the source of any post that arrived
671                 'store_source' => false,
672         ],
673         'smarty3' => [
674                 // config_dir (String)
675                 // Base working directory for the templating engine, must be writeable by the webserver user
676                 'config_dir' => 'view/smarty3',
677
678                 // use_sub_dirs (Boolean)
679                 // By default the template cache is stored in several subdirectories.
680                 'use_sub_dirs' => true,
681         ],
682         'api' => [
683                 // mastodon_banner (String)
684                 // Default banner image for Mastodon API, must be a relative path from the base Friendica folder
685                 //
686                 // Default picture credits:
687                 // Author: Lostinlight <https://mastodon.xyz/@lightone>
688                 // License: CC0 https://creativecommons.org/share-your-work/public-domain/cc0/
689                 // Link to original work: https://gitlab.com/lostinlight/per_aspera_ad_astra/-/blob/master/friendica-404/friendica-promo-bubbles.jpg
690                 'mastodon_banner' => '/images/friendica-banner.jpg',
691         ],
692         'blocklist' => [
693                 // public (Boolean)
694                 // Wether the blocklist is publicly listed under /about (or in any later API)
695                 'public' => true,
696         ],
697 ];