diff options
| author | Marie <marie@kaifa.ch> | 2023-12-31 18:22:02 +0100 |
|---|---|---|
| committer | Marie <marie@kaifa.ch> | 2023-12-31 18:22:02 +0100 |
| commit | b1c26201ca91140c7b28a768e829e185dc23f2d7 (patch) | |
| tree | 901385faf2549de7b5baeb4cfa2a4b48e2f8c6c6 /.config/docker_example.yml | |
| parent | fix: /oauth/oauth to /oauth (diff) | |
| download | sharkey-b1c26201ca91140c7b28a768e829e185dc23f2d7.tar.gz sharkey-b1c26201ca91140c7b28a768e829e185dc23f2d7.tar.bz2 sharkey-b1c26201ca91140c7b28a768e829e185dc23f2d7.zip | |
upd: Note Length customization
note length is now configurable through the config file
Closes #281
falls back to 3000 (misskey default) if not used/included in config
Diffstat (limited to '.config/docker_example.yml')
| -rw-r--r-- | .config/docker_example.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/docker_example.yml b/.config/docker_example.yml index b3a6d78520..c6c83a98bf 100644 --- a/.config/docker_example.yml +++ b/.config/docker_example.yml @@ -167,6 +167,9 @@ id: 'aidx' # IP address family used for outgoing request (ipv4, ipv6 or dual) #outgoingAddressFamily: ipv4 +# Amount of characters that can be used when writing notes (maximum: 8192, minimum: 1) +maxNoteLength: 3000 + # Proxy for HTTP/HTTPS #proxy: http://127.0.0.1:3128 @@ -197,6 +200,8 @@ proxyRemoteFiles: true # Sign to ActivityPub GET request (default: true) signToActivityPubGet: true +# check that inbound ActivityPub GET requests are signed ("authorized fetch") +checkActivityPubGetSignature: false # For security reasons, uploading attachments from the intranet is prohibited, # but exceptions can be made from the following settings. Default value is "undefined". |