mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
747 B
PHTML
38 lines
747 B
PHTML
6 years ago
|
<?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', false),
|
||
|
|
||
|
'delivery' => [
|
||
|
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 2.0),
|
||
|
'concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10)
|
||
|
]
|
||
|
],
|
||
|
|
||
|
'atom' => [
|
||
|
'enabled' => env('ATOM_FEEDS', true),
|
||
|
],
|
||
|
|
||
|
'nodeinfo' => [
|
||
|
'enabled' => env('NODEINFO', true),
|
||
|
],
|
||
|
|
||
|
'webfinger' => [
|
||
|
'enabled' => env('WEBFINGER', true)
|
||
|
],
|
||
|
|
||
|
];
|