1
0
Fork 0
forked from mirror/pixelfed
pixelfed/config/federation.php

46 lines
953 B
PHP
Raw Normal View History

2019-06-09 17:15:01 -06: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 17:15:01 -06:00
2019-07-18 19:41:53 -06:00
'remoteFollow' => env('AP_REMOTE_FOLLOW', false),
2019-06-09 17:25:17 -06:00
2019-06-09 17:15:01 -06:00
'delivery' => [
2020-11-26 00:39:01 -07:00
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 30.0),
2020-05-23 23:08:27 -06:00
'concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10),
'logger' => [
'enabled' => env('AP_LOGGER_ENABLED', false),
'driver' => 'log'
]
2019-06-09 17:15:01 -06:00
]
],
'atom' => [
'enabled' => env('ATOM_FEEDS', true),
],
'nodeinfo' => [
'enabled' => env('NODEINFO', true),
],
'webfinger' => [
'enabled' => env('WEBFINGER', true)
],
2021-04-06 21:17:42 -06:00
'network_timeline' => env('PF_NETWORK_TIMELINE', false)
];