2018-07-14 09:14:24 -05:00
|
|
|
name: example-instance-name # Name of your instance
|
|
|
|
description: example-description # Description of your instance
|
2018-06-14 23:58:09 -05:00
|
|
|
|
2017-11-22 14:43:00 -06:00
|
|
|
maintainer:
|
2018-07-14 09:14:24 -05:00
|
|
|
name: example-maitainer-name # Your name
|
|
|
|
url: http://example.com/ # Your contact (http or mailto)
|
|
|
|
repository_url: https://github.com/syuilo/misskey # Repository URL
|
|
|
|
feedback_url: https://github.com/syuilo/misskey/issues # Feedback URL (e.g. github issue)
|
2018-07-07 07:08:22 -05:00
|
|
|
|
2018-10-01 21:59:12 -05:00
|
|
|
|
|
|
|
# Final accessible URL seen by a user.
|
|
|
|
url: https://example.tld/
|
|
|
|
|
|
|
|
|
|
|
|
### Port and TLS settings ######################################
|
|
|
|
#
|
|
|
|
# Misskey supports two deployment options for public.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Option 1: With Reverse Proxy
|
|
|
|
#
|
|
|
|
# +----- https://example.tld/ ------------+
|
|
|
|
# +------+ |+-------------+ +----------------+|
|
|
|
|
# | User | ---> || Proxy (443) | ---> | Misskey (3000) ||
|
|
|
|
# +------+ |+-------------+ +----------------+|
|
|
|
|
# +---------------------------------------+
|
2018-07-14 12:09:55 -05:00
|
|
|
#
|
2018-10-01 21:59:12 -05:00
|
|
|
# You need to setup reverse proxy. (eg. Nginx)
|
|
|
|
# You do not define 'https' section.
|
|
|
|
|
|
|
|
# Option 2: Standalone
|
2018-07-14 12:09:55 -05:00
|
|
|
#
|
2018-10-01 21:59:12 -05:00
|
|
|
# +- https://example.tld/ -+
|
|
|
|
# +------+ | +---------------+ |
|
|
|
|
# | User | ---> | | Misskey (443) | |
|
|
|
|
# +------+ | +---------------+ |
|
|
|
|
# +------------------------+
|
|
|
|
#
|
|
|
|
# You need to run Misskey as root.
|
|
|
|
# You need to set Certificate in 'https' section.
|
|
|
|
|
|
|
|
# To use option 1, uncomment below line.
|
|
|
|
# port: 3000 # A port that your Misskey server should listen.
|
|
|
|
|
|
|
|
# To use option 2, uncomment below lines.
|
|
|
|
# port: 443
|
2018-07-14 12:15:45 -05:00
|
|
|
#
|
2018-10-01 21:59:12 -05:00
|
|
|
# https:
|
|
|
|
# # path for certification
|
|
|
|
# key: /etc/letsencrypt/live/example.tld/privkey.pem
|
|
|
|
# cert: /etc/letsencrypt/live/example.tld/fullchain.pem
|
2018-07-14 12:09:55 -05:00
|
|
|
|
2018-10-01 21:59:12 -05:00
|
|
|
################################################################
|
2018-07-14 09:20:30 -05:00
|
|
|
|
2017-11-22 14:43:00 -06:00
|
|
|
|
|
|
|
mongodb:
|
|
|
|
host: localhost
|
|
|
|
port: 27017
|
2018-07-14 12:29:50 -05:00
|
|
|
db: misskey
|
2018-07-14 08:42:44 -05:00
|
|
|
user: example-misskey-user
|
|
|
|
pass: example-misskey-pass
|
2017-11-22 14:43:00 -06:00
|
|
|
|
2018-07-21 05:17:15 -05:00
|
|
|
# Drive capacity of a local user (MB)
|
|
|
|
localDriveCapacityMb: 256
|
|
|
|
|
|
|
|
# Drive capacity of a remote user (MB)
|
|
|
|
remoteDriveCapacityMb: 8
|
|
|
|
|
2018-07-14 08:42:44 -05:00
|
|
|
# If enabled:
|
|
|
|
# Server will not cache remote files (Using direct link instead).
|
|
|
|
# You can save your storage.
|
2018-08-15 17:31:58 -05:00
|
|
|
#
|
|
|
|
# NOTE:
|
|
|
|
# * Users cannot see remote images when they turn off "Show media from a remote server" setting.
|
|
|
|
# * Since thumbnails are not provided, traffic increases.
|
2018-08-15 11:20:52 -05:00
|
|
|
preventCacheRemoteFiles: false
|
2018-07-14 09:06:46 -05:00
|
|
|
|
2018-07-23 11:58:11 -05:00
|
|
|
drive:
|
|
|
|
storage: 'db'
|
|
|
|
|
|
|
|
# OR
|
|
|
|
|
2018-07-24 18:01:12 -05:00
|
|
|
# storage: 'minio'
|
2018-07-23 11:58:11 -05:00
|
|
|
# bucket:
|
|
|
|
# prefix:
|
|
|
|
# config:
|
|
|
|
# endPoint:
|
|
|
|
# port:
|
2018-08-13 11:57:52 -05:00
|
|
|
# useSSL:
|
2018-07-23 11:58:11 -05:00
|
|
|
# accessKey:
|
|
|
|
# secretKey:
|
|
|
|
|
2018-07-26 03:42:08 -05:00
|
|
|
# S3 example
|
|
|
|
# storage: 'minio'
|
|
|
|
# bucket: bucket-name
|
|
|
|
# prefix: files
|
|
|
|
# config:
|
|
|
|
# endPoint: s3-us-west-2.amazonaws.com
|
|
|
|
# region: us-west-2
|
2018-08-13 11:57:52 -05:00
|
|
|
# useSSL: true
|
2018-07-26 03:42:08 -05:00
|
|
|
# accessKey: XXX
|
|
|
|
# secretKey: YYY
|
|
|
|
|
|
|
|
# S3 example (with CDN, custom domain)
|
|
|
|
# storage: 'minio'
|
|
|
|
# bucket: drive.example.com
|
|
|
|
# prefix: files
|
|
|
|
# baseUrl: https://drive.example.com
|
|
|
|
# config:
|
|
|
|
# endPoint: s3-us-west-2.amazonaws.com
|
|
|
|
# region: us-west-2
|
2018-08-13 11:57:52 -05:00
|
|
|
# useSSL: true
|
2018-07-26 03:42:08 -05:00
|
|
|
# accessKey: XXX
|
|
|
|
# secretKey: YYY
|
|
|
|
|
2018-07-14 09:06:46 -05:00
|
|
|
#
|
|
|
|
# Below settings are optional
|
|
|
|
#
|
|
|
|
|
2018-10-11 01:50:27 -05:00
|
|
|
# Redis
|
|
|
|
#redis:
|
|
|
|
# host: localhost
|
|
|
|
# port: 6379
|
|
|
|
# pass: example-pass
|
|
|
|
|
2018-07-14 12:22:02 -05:00
|
|
|
# Elasticsearch
|
2018-10-11 01:50:27 -05:00
|
|
|
#elasticsearch:
|
|
|
|
# host: localhost
|
|
|
|
# port: 9200
|
|
|
|
# pass: null
|
2018-07-14 12:22:02 -05:00
|
|
|
|
2018-07-18 10:04:09 -05:00
|
|
|
# reCAPTCHA
|
2018-10-11 01:50:27 -05:00
|
|
|
#recaptcha:
|
|
|
|
# site_key: example-site-key
|
2018-07-18 10:04:09 -05:00
|
|
|
# secret_key: example-secret-key
|
|
|
|
|
2018-07-14 09:06:46 -05:00
|
|
|
# ServiceWorker
|
2018-10-11 01:50:27 -05:00
|
|
|
#sw:
|
|
|
|
# # Public key of VAPID
|
|
|
|
# public_key: example-sw-public-key
|
|
|
|
#
|
|
|
|
# # Private key of VAPID
|
|
|
|
# private_key: example-sw-private-key
|
2018-07-14 09:06:46 -05:00
|
|
|
|
|
|
|
# Twitter integration
|
2018-08-14 08:45:36 -05:00
|
|
|
# You need to set the oauth callback url as : https://<your-misskey-instance>/api/tw/cb
|
2018-10-11 01:50:27 -05:00
|
|
|
#twitter:
|
|
|
|
# consumer_key: example-twitter-consumer-key
|
|
|
|
# consumer_secret: example-twitter-consumer-secret-key
|
2018-07-24 10:40:27 -05:00
|
|
|
|
|
|
|
# Ghost
|
|
|
|
# Ghost account is an account used for the purpose of delegating
|
|
|
|
# followers when putting users in the list.
|
2018-10-11 01:50:27 -05:00
|
|
|
#ghost: user-id-of-your-ghost-account
|
2018-07-27 13:55:41 -05:00
|
|
|
|
|
|
|
# Clustering
|
2018-10-11 01:50:27 -05:00
|
|
|
#clusterLimit: 1
|
2018-08-25 11:56:21 -05:00
|
|
|
|
|
|
|
# Summaly proxy
|
2018-10-11 01:50:27 -05:00
|
|
|
#summalyProxy: "http://example.com"
|
2018-10-06 02:03:18 -05:00
|
|
|
|
|
|
|
# User recommendation
|
2018-10-11 01:50:27 -05:00
|
|
|
#user_recommendation:
|
|
|
|
# external: true
|
|
|
|
# engine: http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-misskey-api.cgi?{{host}}+{{user}}+{{limit}}+{{offset}}
|
|
|
|
# timeout: 300000
|
2018-10-23 14:00:04 -05:00
|
|
|
|
|
|
|
# Max allowed note text length in charactors
|
|
|
|
maxNoteTextLength: 1000
|