pixelfed/config/federation.php

46 lines
953 B
PHP
Raw Normal View History

2019-06-09 23:15:01 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
| ActivityPub
|--------------------------------------------------------------------------
|
| ActivityPub configuration
|
*/
'activitypub' => [
'enabled' => env('ACTIVITY_PUB', false),
'outbox' => env('AP_OUTBOX', true),
'inbox' => env('AP_INBOX', true),
'sharedInbox' => env('AP_SHAREDINBOX', true),
2019-06-09 23:15:01 +00:00
2019-07-19 01:41:53 +00:00
'remoteFollow' => env('AP_REMOTE_FOLLOW', false),
2019-06-09 23:25:17 +00:00
2019-06-09 23:15:01 +00:00
'delivery' => [
2020-11-26 07:39:01 +00:00
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 30.0),
2020-05-24 05:08:27 +00:00
'concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10),
'logger' => [
'enabled' => env('AP_LOGGER_ENABLED', false),
'driver' => 'log'
]
2019-06-09 23:15:01 +00:00
]
],
'atom' => [
'enabled' => env('ATOM_FEEDS', true),
],
'nodeinfo' => [
'enabled' => env('NODEINFO', true),
],
'webfinger' => [
'enabled' => env('WEBFINGER', true)
],
2021-04-07 03:17:42 +00:00
'network_timeline' => env('PF_NETWORK_TIMELINE', false)
];