2019-04-07 21:50:36 +09:00
|
|
|
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
2022-09-11 00:20:43 -04:00
|
|
|
# FoundKey configuration
|
2019-04-07 21:50:36 +09:00
|
|
|
#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
|
|
|
|
# ┌─────┐
|
|
|
|
#───┘ URL └─────────────────────────────────────────────────────
|
|
|
|
|
2018-10-02 11:59:12 +09:00
|
|
|
# Final accessible URL seen by a user.
|
|
|
|
url: https://example.tld/
|
|
|
|
|
2019-07-03 20:31:52 +09:00
|
|
|
# ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE
|
|
|
|
# URL SETTINGS AFTER THAT!
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
# ┌───────────────────────┐
|
|
|
|
#───┘ Port and TLS settings └───────────────────────────────────
|
2018-10-02 11:59:12 +09:00
|
|
|
|
|
|
|
#
|
2022-09-11 00:20:43 -04:00
|
|
|
# FoundKey requires a reverse proxy to support HTTPS connections.
|
2018-10-02 11:59:12 +09:00
|
|
|
#
|
2022-09-11 00:20:43 -04:00
|
|
|
# +-------- https://example.tld/ ----------+
|
|
|
|
# +------+ |+-------------+ +-----------------+|
|
|
|
|
# | User | ---> || Proxy (443) | ---> | FoundKey (3000) ||
|
|
|
|
# +------+ |+-------------+ +-----------------+|
|
|
|
|
# +----------------------------------------+
|
2018-07-15 02:09:55 +09:00
|
|
|
#
|
2022-03-08 15:23:18 +01: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-15 02:09:55 +09:00
|
|
|
|
2022-09-11 00:20:43 -04:00
|
|
|
# The port that your FoundKey server should listen on.
|
2022-03-08 15:23:18 +01:00
|
|
|
port: 3000
|
2018-07-14 23:20:30 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
# ┌──────────────────────────┐
|
|
|
|
#───┘ PostgreSQL configuration └────────────────────────────────
|
2017-11-23 05:43:00 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
db:
|
2017-11-23 05:43:00 +09:00
|
|
|
host: localhost
|
2019-04-07 21:50:36 +09:00
|
|
|
port: 5432
|
|
|
|
|
|
|
|
# Database name
|
2022-09-11 00:20:43 -04:00
|
|
|
db: foundkey
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
# Auth
|
2022-09-11 00:20:43 -04:00
|
|
|
user: example-foundkey-user
|
|
|
|
pass: example-foundkey-pass
|
2017-11-23 05:43:00 +09:00
|
|
|
|
2022-09-19 23:32:18 -04:00
|
|
|
# Whether to disable query caching
|
2019-06-11 20:49:08 +09:00
|
|
|
#disableCache: true
|
|
|
|
|
2022-09-19 23:32:18 -04:00
|
|
|
# Extra connection options
|
2019-05-24 03:26:56 +09:00
|
|
|
#extra:
|
|
|
|
# ssl: true
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
# ┌─────────────────────┐
|
|
|
|
#───┘ Redis configuration └─────────────────────────────────────
|
|
|
|
|
2019-04-13 19:19:32 +09:00
|
|
|
redis:
|
|
|
|
host: localhost
|
|
|
|
port: 6379
|
2022-09-19 23:50:48 -04:00
|
|
|
#family: dual # can be either a number or string (0/dual, 4/ipv4, 6/ipv6)
|
2019-04-13 19:19:32 +09:00
|
|
|
#pass: example-pass
|
2019-11-04 20:48:07 +09:00
|
|
|
#prefix: example-prefix
|
|
|
|
#db: 1
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
# ┌─────────────────────────────┐
|
|
|
|
#───┘ Elasticsearch configuration └─────────────────────────────
|
|
|
|
|
|
|
|
#elasticsearch:
|
|
|
|
# host: localhost
|
|
|
|
# port: 9200
|
2020-03-20 14:00:34 +09:00
|
|
|
# ssl: false
|
|
|
|
# user:
|
|
|
|
# pass:
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
# ┌─────────────────────┐
|
|
|
|
#───┘ Other configuration └─────────────────────────────────────
|
|
|
|
|
2019-02-06 19:36:44 +09:00
|
|
|
# Whether disable HSTS
|
|
|
|
#disableHsts: true
|
|
|
|
|
2022-11-25 12:56:49 +01:00
|
|
|
# Number of worker processes by type.
|
|
|
|
# The sum must not exceed the number of available cores.
|
|
|
|
#clusterLimits:
|
|
|
|
# web: 1
|
|
|
|
# queue: 1
|
2019-05-07 17:49:25 +09:00
|
|
|
|
2019-08-27 05:33:24 +09:00
|
|
|
# Job concurrency per worker
|
2019-10-22 19:30:18 +09:00
|
|
|
# deliverJobConcurrency: 128
|
|
|
|
# inboxJobConcurrency: 16
|
2019-08-27 05:33:24 +09:00
|
|
|
|
2020-01-20 14:14:09 +09:00
|
|
|
# Job rate limiter
|
|
|
|
# deliverJobPerSec: 128
|
|
|
|
# inboxJobPerSec: 16
|
|
|
|
|
|
|
|
# Job attempts
|
|
|
|
# deliverJobMaxAttempts: 12
|
|
|
|
# inboxJobMaxAttempts: 8
|
|
|
|
|
2019-08-30 08:29:46 +09:00
|
|
|
# Syslog option
|
|
|
|
#syslog:
|
|
|
|
# host: localhost
|
|
|
|
# port: 514
|
2019-09-02 04:42:52 +09:00
|
|
|
|
|
|
|
# Proxy for HTTP/HTTPS
|
|
|
|
#proxy: http://127.0.0.1:3128
|
|
|
|
|
2020-04-12 20:32:34 +09:00
|
|
|
#proxyBypassHosts: [
|
|
|
|
# 'example.com',
|
|
|
|
# '192.0.2.8'
|
|
|
|
#]
|
|
|
|
|
2019-09-02 04:42:52 +09: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-20 01:54:28 +09:00
|
|
|
|
|
|
|
# Media Proxy
|
2019-12-31 17:23:47 +09:00
|
|
|
#mediaProxy: https://example.com/proxy
|
2020-10-18 01:46:40 +09:00
|
|
|
|
2022-02-27 13:59:10 +09:00
|
|
|
# Proxy remote files (default: false)
|
|
|
|
#proxyRemoteFiles: true
|
|
|
|
|
2022-08-12 20:29:16 +02:00
|
|
|
# Storage path for files if stored locally (absolute path)
|
2022-09-19 23:27:06 -04:00
|
|
|
# default is to store it in ./files in the directory foundkey is located in
|
|
|
|
#internalStoragePath: '/etc/foundkey/files'
|
2021-09-04 20:33:14 +09:00
|
|
|
|
|
|
|
# Upload or download file size limits (bytes)
|
|
|
|
#maxFileSize: 262144000
|
2022-08-12 20:29:16 +02:00
|
|
|
|
2022-10-18 17:33:00 +00:00
|
|
|
# Max note text length (in characters)
|
|
|
|
#maxNoteTextLength: 3000
|
|
|
|
|
2022-08-12 20:29:16 +02:00
|
|
|
#allowedPrivateNetworks: [
|
|
|
|
# '127.0.0.1/32'
|
|
|
|
#]
|
2022-12-12 19:10:34 +01: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
|