2019-04-07 12:50:36 +00:00
|
|
|
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
2022-09-11 04:20:43 +00:00
|
|
|
# FoundKey configuration
|
2019-04-07 12:50:36 +00:00
|
|
|
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
|
|
|
|
# ┌─────┐
|
|
|
|
#───┘ URL └─────────────────────────────────────────────────────
|
|
|
|
|
2018-10-02 02:59:12 +00:00
|
|
|
# Final accessible URL seen by a user.
|
2023-02-04 16:56:15 +00:00
|
|
|
# Only the host part will be used.
|
2019-07-03 11:31:52 +00:00
|
|
|
# ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE
|
|
|
|
# URL SETTINGS AFTER THAT!
|
2023-02-04 16:56:15 +00:00
|
|
|
url: https://example.tld/
|
|
|
|
|
2019-07-03 11:31:52 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
# ┌───────────────────────┐
|
|
|
|
#───┘ Port and TLS settings └───────────────────────────────────
|
2018-10-02 02:59:12 +00:00
|
|
|
|
|
|
|
#
|
2022-09-11 04:20:43 +00:00
|
|
|
# FoundKey requires a reverse proxy to support HTTPS connections.
|
2018-10-02 02:59:12 +00:00
|
|
|
#
|
2022-09-11 04:20:43 +00:00
|
|
|
# +-------- https://example.tld/ ----------+
|
|
|
|
# +------+ |+-------------+ +-----------------+|
|
|
|
|
# | User | ---> || Proxy (443) | ---> | FoundKey (3000) ||
|
|
|
|
# +------+ |+-------------+ +-----------------+|
|
|
|
|
# +----------------------------------------+
|
2018-07-14 17:09:55 +00:00
|
|
|
#
|
2022-03-08 14:23:18 +00:00
|
|
|
# You need to set up a reverse proxy. (e.g. nginx)
|
|
|
|
# An encrypted connection with HTTPS is highly recommended
|
|
|
|
# because tokens may be transferred in GET requests.
|
2018-07-14 17:09:55 +00:00
|
|
|
|
2022-09-11 04:20:43 +00:00
|
|
|
# The port that your FoundKey server should listen on.
|
2022-03-08 14:23:18 +00:00
|
|
|
port: 3000
|
2018-07-14 14:20:30 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
# ┌──────────────────────────┐
|
|
|
|
#───┘ PostgreSQL configuration └────────────────────────────────
|
2017-11-22 20:43:00 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
db:
|
2017-11-22 20:43:00 +00:00
|
|
|
host: localhost
|
2019-04-07 12:50:36 +00:00
|
|
|
port: 5432
|
|
|
|
|
|
|
|
# Database name
|
2022-09-11 04:20:43 +00:00
|
|
|
db: foundkey
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
# Auth
|
2022-09-11 04:20:43 +00:00
|
|
|
user: example-foundkey-user
|
|
|
|
pass: example-foundkey-pass
|
2017-11-22 20:43:00 +00:00
|
|
|
|
2022-09-20 03:32:18 +00:00
|
|
|
# Whether to disable query caching
|
2023-02-04 16:56:15 +00:00
|
|
|
# Default is to cache, i.e. false.
|
2019-06-11 11:49:08 +00:00
|
|
|
#disableCache: true
|
|
|
|
|
2022-09-20 03:32:18 +00:00
|
|
|
# Extra connection options
|
2019-05-23 18:26:56 +00:00
|
|
|
#extra:
|
|
|
|
# ssl: true
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
# ┌─────────────────────┐
|
|
|
|
#───┘ Redis configuration └─────────────────────────────────────
|
|
|
|
|
2019-04-13 10:19:32 +00:00
|
|
|
redis:
|
|
|
|
host: localhost
|
|
|
|
port: 6379
|
2023-02-04 16:56:15 +00:00
|
|
|
# Address family to connect over.
|
|
|
|
# Can be either a number or string (0/dual, 4/ipv4, 6/ipv6)
|
|
|
|
# Default is "dual".
|
|
|
|
#family: dual
|
|
|
|
# The following properties are optional.
|
2019-04-13 10:19:32 +00:00
|
|
|
#pass: example-pass
|
2019-11-04 11:48:07 +00:00
|
|
|
#prefix: example-prefix
|
|
|
|
#db: 1
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
# ┌─────────────────────────────┐
|
|
|
|
#───┘ Elasticsearch configuration └─────────────────────────────
|
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Elasticsearch is optional.
|
2019-04-07 12:50:36 +00:00
|
|
|
#elasticsearch:
|
|
|
|
# host: localhost
|
|
|
|
# port: 9200
|
2020-03-20 05:00:34 +00:00
|
|
|
# ssl: false
|
|
|
|
# user:
|
|
|
|
# pass:
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
# ┌─────────────────────┐
|
|
|
|
#───┘ Other configuration └─────────────────────────────────────
|
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Whether to disable HSTS (not recommended)
|
|
|
|
# Default is to enable HSTS, i.e. false.
|
2019-02-06 10:36:44 +00:00
|
|
|
#disableHsts: true
|
|
|
|
|
2022-11-25 11:56:49 +00:00
|
|
|
# Number of worker processes by type.
|
2023-02-04 16:56:15 +00:00
|
|
|
# The sum should not exceed the number of available cores.
|
2022-11-25 11:56:49 +00:00
|
|
|
#clusterLimits:
|
|
|
|
# web: 1
|
|
|
|
# queue: 1
|
2019-05-07 08:49:25 +00:00
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Jobs each worker will try to work on at a time.
|
|
|
|
#deliverJobConcurrency: 128
|
|
|
|
#inboxJobConcurrency: 16
|
2019-08-26 20:33:24 +00:00
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Rate limit for each Worker.
|
|
|
|
# Use -1 to disable.
|
|
|
|
# A rate limit for deliver jobs is not recommended as it comes with
|
|
|
|
# a big performance penalty due to overhead of rate limiting.
|
2023-02-04 16:57:52 +00:00
|
|
|
#deliverJobPerSec: -1
|
2023-02-04 16:56:15 +00:00
|
|
|
#inboxJobPerSec: 16
|
2020-01-20 05:14:09 +00:00
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Number of times each job will be tried.
|
|
|
|
# 1 means only try once and don't retry.
|
|
|
|
#deliverJobMaxAttempts: 12
|
|
|
|
#inboxJobMaxAttempts: 8
|
2020-01-20 05:14:09 +00:00
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Proxy for HTTP/HTTPS outgoing connections
|
2019-09-01 19:42:52 +00:00
|
|
|
#proxy: http://127.0.0.1:3128
|
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Hosts that should not be connected to through the proxy specified above
|
2020-04-12 11:32:34 +00:00
|
|
|
#proxyBypassHosts: [
|
|
|
|
# 'example.com',
|
|
|
|
# '192.0.2.8'
|
|
|
|
#]
|
|
|
|
|
2019-09-01 19:42:52 +00:00
|
|
|
# Proxy for SMTP/SMTPS
|
|
|
|
#proxySmtp: http://127.0.0.1:3128 # use HTTP/1.1 CONNECT
|
|
|
|
#proxySmtp: socks4://127.0.0.1:1080 # use SOCKS4
|
|
|
|
#proxySmtp: socks5://127.0.0.1:1080 # use SOCKS5
|
2019-12-19 16:54:28 +00:00
|
|
|
|
|
|
|
# Media Proxy
|
2019-12-31 08:23:47 +00:00
|
|
|
#mediaProxy: https://example.com/proxy
|
2020-10-17 16:46:40 +00:00
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# Proxy remote files
|
|
|
|
# Default is to not proxy remote files, i.e. false.
|
2022-02-27 04:59:10 +00:00
|
|
|
#proxyRemoteFiles: true
|
|
|
|
|
2022-08-12 18:29:16 +00:00
|
|
|
# Storage path for files if stored locally (absolute path)
|
2022-09-20 03:27:06 +00:00
|
|
|
# default is to store it in ./files in the directory foundkey is located in
|
|
|
|
#internalStoragePath: '/etc/foundkey/files'
|
2021-09-04 11:33:14 +00:00
|
|
|
|
|
|
|
# Upload or download file size limits (bytes)
|
2023-02-04 16:56:15 +00:00
|
|
|
# default is 262144000 = 250MiB
|
2021-09-04 11:33:14 +00:00
|
|
|
#maxFileSize: 262144000
|
2022-08-12 18:29:16 +00:00
|
|
|
|
2022-10-18 17:33:00 +00:00
|
|
|
# Max note text length (in characters)
|
|
|
|
#maxNoteTextLength: 3000
|
|
|
|
|
2023-02-04 16:56:15 +00:00
|
|
|
# By default, Foundkey will fail when something tries to make it fetch something from private IPs.
|
|
|
|
# With the following setting you can explicitly allow some private CIDR subnets.
|
|
|
|
# Default is an empty list, i.e. none allowed.
|
2022-08-12 18:29:16 +00:00
|
|
|
#allowedPrivateNetworks: [
|
|
|
|
# '127.0.0.1/32'
|
|
|
|
#]
|
2022-12-12 18:10:34 +00:00
|
|
|
|
|
|
|
# images used on error screens. You can use absolute or relative URLs.
|
|
|
|
# If you use relative URLs, be aware that the URL may be used on different pages/paths, so the path component should be absolute.
|
|
|
|
#images:
|
|
|
|
# info: /twemoji/1f440.svg
|
|
|
|
# notFound: /twemoji/2049.svg
|
|
|
|
# error: /twemoji/1f480.svg
|