edit sharkey-dfdb, add sharkey configs

This commit is contained in:
Ruben 2026-01-09 21:17:26 -06:00
commit 2b985757c7
Signed by: sneexy
GPG key ID: 8ECFA045E63BC583
6 changed files with 96 additions and 1 deletions

View file

@ -0,0 +1,12 @@
# The port that your Misskey server should listen on.
port: 3002
# Job concurrency per worker
deliverJobConcurrency: 0
inboxJobConcurrency: 0
relationshipJobConcurrency: 0
# Job rate limiter
deliverJobPerSec: 0
inboxJobPerSec: 0
relationshipJobPerSec: 0

View file

@ -0,0 +1,12 @@
# The port that your Misskey server should listen on.
port: 3001
# Job concurrency per worker
deliverJobConcurrency: 0
inboxJobConcurrency: 0
relationshipJobConcurrency: 0
# Job rate limiter
deliverJobPerSec: 0
inboxJobPerSec: 0
relationshipJobPerSec: 0

View file

@ -0,0 +1,12 @@
# The port that your Misskey server should listen on.
port: 3003
# Job concurrency per worker
deliverJobConcurrency: 0
inboxJobConcurrency: 0
relationshipJobConcurrency: 0
# Job rate limiter
deliverJobPerSec: 0
inboxJobPerSec: 0
relationshipJobPerSec: 0

View file

@ -0,0 +1,18 @@
# Number of worker processes
clusterLimit: 2
# Job concurrency per worker
# What's relationshipJob?:
# Follow, unfollow, block and unblock(ings) while following-imports, etc. or account migrations.
deliverJobConcurrency: 128
inboxJobConcurrency: 8
relationshipJobConcurrency: 32
# Job rate limiter
deliverJobPerSec: 4096
inboxJobPerSec: 4096
relationshipJobPerSec: 4096
# Job attempts
#deliverJobMaxAttempts: 12
#inboxJobMaxAttempts: 8