]> git.mxchange.org Git - friendica.git/blob - config/defaults.ini.php
Add optimize_max_tablesize to default config file
[friendica.git] / config / defaults.ini.php
1 <?php return <<<INI
2
3 ; This file declares the default values for all the config values of Friendica.
4 ; Please don't edit this file as its content may change in the upcoming versions.
5
6 [database]
7
8 ; host (String)
9 ; Hostname or IP address of the database server.
10 ; Can contain the port number with the syntax "hostname:port".
11 hostname =
12
13 ; user (String)
14 ; Database user name. Please don't use "root".
15 username =
16
17 ; pass (String)
18 ; Database user password. Please don't use empty passwords.
19 password =
20
21 ; base (String)
22 ; Database name.
23 database =
24
25 ; charset (String)
26 ; Database connexion charset. Changing this value will likely corrupt special characters.
27 charset = utf8mb4
28
29 [config]
30
31 ; admin_email (Comma-separated list)
32 ; In order to perform system administration via the admin panel, this must precisely match the email address of the person logged in.
33 admin_email =
34
35 ; max_import_size (Integer)
36 ; Maximum body size of DFRN and Mail messages in characters. 0 is unlimited.
37 max_import_size = 200000
38
39 ; php_path (String)
40 ; Location of PHP command line processor
41 php_path = php
42
43 ; register_policy (Constant)
44 ; Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
45 ; Be certain to create your own personal account before setting REGISTER_CLOSED.
46 ; REGISTER_APPROVE requires you set system.admin_email to the email address of an already registered person who can authorise
47 ; and/or approve/deny the request.
48 register_policy = REGISTER_CLOSED
49
50 ; register_text (String)
51 ; Will be displayed prominently on the registration page.
52 register_text = ''
53
54 ; sitename (String)
55 ; Displayed server name
56 sitename = "Friendica Social Network"
57
58 [system]
59
60 ; account_abandon_days (Integer)
61 ; Will not waste system resources polling external sites for abandonded accounts.
62 ; Enter 0 for no time limit.
63 account_abandon_days = 0
64
65 ; addon (Comma-separated list)
66 ; Manual list of addons which are enabled on this system.
67 addon =
68
69 ; allowed_link_protocols (Array)
70 ; Allowed protocols in links URLs, add at your own risk. http is always allowed.
71 allowed_link_protocols[] = ftp
72 allowed_link_protocols[] = ftps
73 allowed_link_protocols[] = mailto
74 allowed_link_protocols[] = cid
75 allowed_link_protocols[] = gopher
76
77 ; always_show_preview (Boolean)
78 ; Only show small preview picures.
79 always_show_preview = false
80
81 ; archival_days (Integer)
82 ; Number of days that we try to deliver content before we archive a contact.
83 archival_days = 32
84
85 ; auth_cookie_lifetime (Integer)
86 ; Number of days that should pass without any activity before a user who chose "Remember me" when logging in is considered logged out.
87 auth_cookie_lifetime = 7
88
89 ; block_local_dir (Boolean)
90 ; Deny public access to the local user directory.
91 block_local_dir = false
92
93 ; config_adapter (jit|preload)
94 ; Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
95 config_adapter = jit
96
97 ; curl_range_bytes (Integer)
98 ; Maximum number of bytes that should be fetched. Default is 0, which mean "no limit".
99 curl_range_bytes = 0
100
101 ; db_log (Path)
102 ; Name of a logfile to log slow database queries
103 db_log =
104
105 ; db_loglimit (Integer)
106 ; If a database call lasts longer than this value in seconds it is logged.
107 ; Inactive if system.db_log is empty
108 db_loglimit = 10
109
110 ; db_log_index (Path)
111 ; Name of a logfile to log queries with bad indexes
112 db_log_index =
113
114 ; db_log_index_watch (Comma-separated list)
115 ; Watchlist of indexes to watch
116 db_log_index_watch =
117
118 ; db_loglimit_index (Integer)
119 ; Number of index rows needed to be logged for indexes on the watchlist. 0 to disable.
120 db_loglimit_index = 0
121
122 ; db_loglimit_index_high (Integer)
123 ; Number of index rows to be logged anyway (for any index). 0 to disable.
124 db_loglimit_index_high = 0
125
126 ; db_log_index_blacklist (Comma-separated list)
127 ; Blacklist of indexes that shouldn't be watched
128 db_log_index_blacklist =
129
130 ; dbclean_expire_conversation (Integer)
131 ; When DBClean is enabled, any entry in the conversation table will be deleted after this many days.
132 ; These data are normally needed only for debugging purposes and they are safe to delete.
133 dbclean_expire_conversation = 90
134
135 ; default_timezone (String)
136 ; Choose a default timezone. See https://secure.php.net/manual/en/timezones.php
137 ; It only applies to timestamps for anonymous viewers.
138 default_timezone = UTC
139
140 ; diaspora_test (Boolean)
141 ; For development only. Disables the message transfer.
142 diaspora_test = false
143
144 ; disable_email_validation (Boolean)
145 ; Disables the check if a mail address is in a valid format and can be resolved via DNS.
146 disable_email_validation = false
147
148 ; disable_url_validation (Boolean)
149 ; Disables the DNS lookup of an URL.
150 disable_url_validation = false
151
152 ; disable_password_exposed (Boolean)
153 ; Disable the exposition check against the remote haveibeenpwned API on password change.
154 disable_password_exposed = false
155
156 ; dlogfile (Path)
157 ; location of the developer log file
158 dlogfile =
159
160 ; dlogip (String)
161 ; restricts develop log writes to requests originating from this IP address
162 dlogip =
163
164 ; forbidden_nicknames (Comma-separated list)
165 ; Prevents users from registering the specified nicknames on this node
166 ; Default value comprises classic role names from RFC 2142
167 forbidden_nicknames = info, marketing, sales, support, abuse, noc, security, postmaster, hostmaster, usenet, news, webmaster, www, uucp, ftp, root, sysop
168
169 ; frontend_worker_timeout (Integer)
170 ; Value in minutes after we think that a frontend task was killed by the webserver.
171 frontend_worker_timeout = 10
172
173 ; groupedit_image_limit (Integer)
174 ; Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
175 ; This can alternatively be set on a per account basis in the pconfig table.
176 groupedit_image_limit = 400
177
178 ; hsts (Boolean)
179 ; Enables the sending of HTTP Strict Transport Security headers
180 hsts = false
181
182 ; ignore_cache (Boolean)
183 ; For development only. Disables the item cache.
184 ignore_cache = false
185
186 ; instances_social_key (String)
187 ; Key to the API of https://instances.social which retrieves data about mastodon servers.
188 ; See https://instances.social/api/token to get an API key.
189 instances_social_key =
190
191 ; ipv4_resolve (Boolean)
192 ; Resolve IPV4 addresses only. Don't resolve to IPV6.
193 ipv4_resolve = false
194
195 ; invitation_only (Boolean)
196 ; If set true registration is only possible after a current member of the node has send an invitation.
197 invitation_only = false
198
199 ; jpeg_quality (Integer)
200 ; Sets the ImageMagick quality level for JPEG images. Values ranges from 50 (awful) to 100 (near perfect).
201 jpeg_quality = 100
202
203 ; language (String)
204 ; Admin-created user default language.
205 ; Two-letters ISO 639-1 code.
206 language = en
207
208 ; like_no_comment (Boolean)
209 ; Don't update the "commented" value of an item when it is liked.
210 like_no_comment = false
211
212 ; local_block (Boolean)
213 ; Used in conjunction with "block_public".
214 local_block = false
215
216 ; local_search (Boolean)
217 ; Blocks search for users who are not logged in to prevent crawlers from blocking your system.
218 local_search = false
219
220 ; local_tags (Boolean)
221 ; If activated, all hashtags will point to the local server.
222 local_tags = false
223
224 ; max_connections (Integer)
225 ; The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
226 ; When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
227 max_connections = 0
228
229 ; max_connections_level (Integer 0-100)
230 ; The maximum percentage of connections that are allowed to let the worker start.
231 max_connections_level = 75
232
233 ; max_contact_queue (Integer)
234 ; Maximum number of queue items for a single contact before subsequent messages are discarded.
235 max_contact_queue = 500
236
237 ; max_batch_queue (Integer)
238 ; Maximum number of batched queue items for a single contact before subsequent messages are discarded.
239 max_batch_queue = 1000
240
241 ; max_image_length (Integer)
242 ; An alternate way of limiting picture upload sizes.
243 ; Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
244 ; Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
245 ; If you don't want to set a maximum length, set to -1.
246 max_image_length = -1
247
248 ; max_processes_backend (Integer)
249 ; Maximum number of concurrent database processes for background tasks.
250 max_processes_backend = 5
251
252 ; max_processes_frontend (Integer)
253 ; Maximum number of concurrent database processes for foreground tasks.
254 max_processes_frontend = 20
255
256 ; maximagesize (Integer)
257 ; Maximum size in bytes of an uploaded photo.
258 maximagesize = 800000
259
260 ; min_poll_interval (Integer)
261 ; minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
262 min_poll_interval = 1
263
264 ; no_regfullname (Boolean)
265 ; Allow pseudonyms (true) or enforce a space between firstname and lastname in Full name, as an antispam measure (false).
266 no_regfullname = true
267
268 ; optimize_max_tablesize (Integer)
269 ; Maximum table size (in MB) for the automatic optimization.
270 ; -1 to disable automatic optimization.
271 ;  0 to use internal default (100MB)
272 optimize_max_tablesize = -1
273
274 ; session_handler (database|cache|native)
275 ; Whether to use Cache to store session data or to use PHP native session storage.
276 session_handler = database
277
278 ; cache_driver (database|memcache|memcached|redis)
279 ; Whether to use Memcache or Memcached or Redis to store temporary cache.
280 cache_driver = database
281
282 ; memcache_host (String)
283 ; Host name of the memcache daemon.
284 memcache_host = 127.0.0.1
285
286 ; memcache_port (Integer)
287 ; Port number of the memcache daemon.
288 memcache_port = 11211
289
290 ; memcached_hosts (Array)
291 ; Array of Memcached servers info "host, port(, weight)".
292 memcached_hosts[] = 127.0.0.1, 11211
293
294 ; redis_host (String)
295 ; Host name of the redis daemon.
296 redis_host = 127.0.0.1
297
298 ; redis_port (String)
299 ; Port number of the redis daemon.
300 redis_port = 6379
301
302 ; no_count (Boolean)
303 ; Don't do count calculations (currently only when showing albums)
304 no_count = false
305
306 ; no_oembed (Boolean)
307 ; Don't use OEmbed to fetch more information about a link.
308 no_oembed = false
309
310 ; no_smilies (Boolean)
311 ; Don't show smilies.
312 no_smilies = false
313
314 ; no_view_full_size (Boolean)
315 ; Don't add the link "View full size" under a resized image.
316 no_view_full_size = false
317
318 ; optimize_items (Boolean)
319 ; Triggers an SQL command to optimize the item table before expiring items.
320 optimize_items = false
321
322 ; pidfile (Path)
323 ; Daemon pid file path. For example: pidfile = /path/to/daemon.pid
324 pidfile =
325
326 ; urlpath (String)
327 ; If you are using a subdirectory of your domain you will need to put the relative path (from the root of your domain) here.
328 ; For instance if your URL is 'http://example.com/directory/subdirectory', set urlpath to 'directory/subdirectory'.
329 urlpath =
330
331 ; paranoia (Boolean)
332 ; Log out users if their IP address changed.
333 paranoia = false
334
335 ; permit_crawling (Boolean)
336 ; Restricts the search for not logged in users to one search per minute.
337 permit_crawling = false
338
339 ; free_crawls (Integer)
340 ; Number of "free" searches when "permit_crawling" is activated.
341 free_crawls = 10
342
343 ; crawl_permit_period (Integer)
344 ; Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated.
345 crawl_permit_period = 60
346
347 ; queue_no_dead_check (Boolean)
348 ; Ignore if the target contact or server seems to be dead during queue delivery.
349 queue_no_dead_check = false
350
351 ; rino_encrypt (Integer)
352 ; Server-to-server private message encryption (RINO).
353 ; Encryption will only be provided if this setting is set to a non zero value on both servers.
354 ; Set to 0 to disable, 2 to enable, 1 is deprecated but wont need mcrypt.
355 rino_encrypt = 2
356
357 ; worker_debug (Boolean)
358 ; If enabled, it prints out the number of running processes split by priority.
359 worker_debug = false
360
361 ; worker_fetch_limit (Integer)
362 ; Number of worker tasks that are fetched in a single query.
363 worker_fetch_limit = 1
364
365 ; profiler (Boolean)
366 ; Enable internal timings to help optimize code. Needed for "rendertime" addon.
367 profiler = false
368
369 ; png_quality (Integer)
370 ; Sets the ImageMagick compression level for PNG images. Values ranges from 0 (uncompressed) to 9 (most compressed).
371 png_quality = 8
372
373 ; proxy_cache_time (Integer)
374 ; Period in seconds after which the cache is cleared.
375 proxy_cache_time = 86400
376
377 ; pushpoll_frequency (Integer)
378 ; Frequency of contact poll for subhub contact using the DFRM or OStatus network
379 ; Available values:
380 ; - 5 = every month
381 ; - 4 = every week
382 ; - 3 = every day
383 ; - 2 = twice a day
384 ; - 1 = every hour
385 ; - 0 = every minute
386 pushpoll_frequency = 3
387
388 ; remove_multiplicated_lines (Boolean)
389 ; If enabled, multiple linefeeds in items are stripped to a single one.
390 remove_multiplicated_lines = false
391
392 ; sendmail_params (Boolean)
393 ; Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
394 ; This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
395 ; Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
396 sendmail_params = true
397
398 ; show_unsupported_addons (Boolean)
399 ; Show all addons including the unsupported ones.
400 show_unsupported_addons = false
401
402 ; show_unsupported_themes (Boolean)
403 ; Show all themes including the unsupported ones.
404 show_unsupported_themes = false
405
406 ; show_global_community_hint (Boolean)
407 ; 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.
408 show_global_community_hint = false
409
410 ; allowed themes (Comma-separated list)
411 ; Themes users can change to in their settings
412 allowed_themes = 'quattro,vier,duepuntozero,smoothly'
413
414 ; theme (String)
415 ; System theme name
416 theme = vier
417
418 ; throttle_limit_day (Integer)
419 ; Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
420 throttle_limit_day = 0
421
422 ; throttle_limit_week (Integer)
423 ; Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
424 throttle_limit_week = 0
425
426 ; throttle_limit_month (Integer)
427 ; Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
428 throttle_limit_month = 0
429
430 ; url (String)
431 ; The fully-qualified URL of this Friendica node.
432 ; Used by the worker in a non-HTTP execution environment.
433 url =
434
435 ; worker_cooldown (Integer)
436 ; Cooldown period in seconds after each worker function call.
437 worker_cooldown = 0
438
439 ; worker_load_exponent (Integer)
440 ; Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
441 ; For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
442 ; Setting 0 would allow maximum worker queues at all times, which is not recommended.
443 worker_load_exponent = 3
444
445 ; directory (String)
446 ; URL of the global directory
447 directory = https://dir.friendi.social
448
449 ; xrd_timeout (Integer)
450 ; Timeout in seconds for fetching the XRD links.
451 xrd_timeout = 20
452
453 [experimental]
454
455 ; exp_themes (Boolean)
456 ; Show experimental themes in user settings.
457 exp_themes = false
458
459 [theme]
460
461 ; hide_eventlist (Boolean)
462 ; Don't show the birthdays and events on the profile and network page
463 hide_eventlist = false
464
465 [jabber]
466
467 ; debug (Boolean)
468 ; Enable debug level for the jabber account synchronisation.
469 debug = false
470
471 ; lockpath (Path)
472 ; Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
473 lockpath =
474
475 INI;
476 // Keep this line