summaryrefslogtreecommitdiff
path: root/docs/config.md
blob: a9987c9ceb12c0fc84278faef58497df004661e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
``` yaml
# サーバーのメンテナ情報
maintainer:
  # メンテナの名前
  name:

  # メンテナの連絡先(URLかmailto形式のURL)
  url:

# プライマリURL
url:

# セカンダリURL
secondary_url:

# 待受ポート
port:

# TLSの設定(利用しない場合は省略可能)
https:
  # 証明書のパス...
  key:
  cert:

# MongoDBの設定
mongodb:
  host: localhost
  port: 27017
  db: misskey
  user:
  pass:

# Redisの設定
redis:
  host: localhost
  port: 6379
  pass:

# reCAPTCHAの設定
recaptcha:
  site_key:
  secret_key:

# ServiceWrokerの設定
sw:
  # VAPIDの公開鍵
  public_key:

  # VAPIDの秘密鍵
  private_key:

# Twitterインテグレーションの設定(利用しない場合は省略可能)
twitter:
  # インテグレーション用アプリのコンシューマーキー
  consumer_key: 

  # インテグレーション用アプリのコンシューマーシークレット
  consumer_secret: 

```