1
0
Fork 0

Config for receiver / fix fatals

This commit is contained in:
Michael 2022-07-28 21:16:42 +00:00
commit b63ad63c29
5 changed files with 14 additions and 6 deletions

View file

@ -164,6 +164,10 @@ return [
// Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
'cache_driver' => 'database',
// decoupled_receiver (Boolean)
// Decouple incoming AP posts by doing the processing in the background.
'decoupled_receiver' => true,
// distributed_cache_driver (database|memcache|memcached|redis)
// Whether to use database, Memcache, Memcached or Redis as a distributed cache.
'distributed_cache_driver' => 'database',
@ -416,6 +420,10 @@ return [
// Maximum number of concurrent database processes for foreground tasks.
'max_processes_frontend' => 20,
// max_recursion_depth (Integer)
// Maximum recursion depth when fetching posts until the job is delegated to a worker task.
'max_recursion_depth' => 10,
// maximagesize (Integer)
// Maximum size in bytes of an uploaded photo.
'maximagesize' => 800000,