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.
pixelfed/config/federation.php

85 lines
2.6 KiB
PHTML

<?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),
'remoteFollow' => env('AP_REMOTE_FOLLOW', true),
'delivery' => [
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 30),
'concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10),
'logger' => [
'enabled' => env('AP_LOGGER_ENABLED', false),
4 weeks ago
'driver' => 'log',
],
'failure_threshold' => env('AP_DELIVERY_FAILURE_THRESHOLD', 5),
'max_backoff' => env('AP_DELIVERY_MAX_BACKOFF', 604800),
],
'ingest' => [
'store_notes_without_followers' => env('AP_INGEST_STORE_NOTES_WITHOUT_FOLLOWERS', false),
],
'authorized_fetch' => env('AUTHORIZED_FETCH', false),
/*
* FEP-8fcf: Followers collection synchronization across servers
*
* When enabled, followers-only posts are delivered with a signed
* Collection-Synchronization header, the partial followers
* collection is served to authenticated remote instances, and
* incoming Collection-Synchronization headers are reconciled.
*/
'followers_sync' => [
'enabled' => env('AP_FOLLOWERS_SYNC', true),
// Minimum seconds between two synchronizations of the same remote actor
'cooldown' => env('AP_FOLLOWERS_SYNC_COOLDOWN', 900),
// Maximum collection pages fetched from a remote server per synchronization
'max_pages' => env('AP_FOLLOWERS_SYNC_MAX_PAGES', 10),
],
],
'atom' => [
'enabled' => env('ATOM_FEEDS', true),
],
'avatars' => [
'store_local' => env('REMOTE_AVATARS', true),
],
'nodeinfo' => [
'enabled' => env('NODEINFO', true),
],
'webfinger' => [
4 weeks ago
'enabled' => env('WEBFINGER', true),
],
'network_timeline' => env('PF_NETWORK_TIMELINE', true),
'network_timeline_days_falloff' => env('PF_NETWORK_TIMELINE_DAYS_FALLOFF', 90),
'custom_emoji' => [
'enabled' => env('CUSTOM_EMOJI', false),
// max size in bytes, default is 2mb
'max_size' => env('CUSTOM_EMOJI_MAX_SIZE', 2000000),
],
'migration' => env('PF_ACCT_MIGRATION_ENABLED', true),
];