iceshrimp-legacy/.config/example.yml

116 lines
2.4 KiB
YAML
Raw Normal View History

# 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 19:09:55 +02:00
#
2018-11-04 12:08:31 +01:00
# You need to setup reverse proxy. (eg. nginx)
# You do not define 'https' section.
# Option 2: Standalone
2018-07-14 19:09:55 +02: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 19:15:45 +02:00
#
# https:
# # path for certification
# key: /etc/letsencrypt/live/example.tld/privkey.pem
# cert: /etc/letsencrypt/live/example.tld/fullchain.pem
2018-07-14 19:09:55 +02:00
################################################################
2018-07-14 16:20:30 +02:00
mongodb:
host: localhost
port: 27017
2018-07-14 19:29:50 +02:00
db: misskey
2018-07-14 15:42:44 +02:00
user: example-misskey-user
pass: example-misskey-pass
2018-07-23 18:58:11 +02:00
drive:
storage: 'db'
# OR
2018-07-25 01:01:12 +02:00
# storage: 'minio'
2018-07-23 18:58:11 +02:00
# bucket:
# prefix:
# config:
# endPoint:
# port:
2018-08-13 18:57:52 +02:00
# useSSL:
2018-07-23 18:58:11 +02:00
# accessKey:
# secretKey:
2018-07-26 10:42:08 +02: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 18:57:52 +02:00
# useSSL: true
2018-07-26 10:42:08 +02: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 18:57:52 +02:00
# useSSL: true
2018-07-26 10:42:08 +02:00
# accessKey: XXX
# secretKey: YYY
2018-11-05 22:24:31 +01:00
# If enabled:
# The first account created is automatically marked as Admin.
autoAdmin: true
2018-07-14 16:06:46 +02:00
#
# Below settings are optional
#
2018-10-11 08:50:27 +02:00
# Redis
#redis:
# host: localhost
# port: 6379
# pass: example-pass
2018-07-14 19:22:02 +02:00
# Elasticsearch
2018-10-11 08:50:27 +02:00
#elasticsearch:
# host: localhost
# port: 9200
# pass: null
2018-07-14 19:22:02 +02:00
2019-02-06 11:36:44 +01:00
# Whether disable HSTS
#disableHsts: true
# Clustering
2018-10-11 08:50:27 +02:00
#clusterLimit: 1