Update config example
This commit is contained in:
parent
1f4969547b
commit
b03987290c
|
@ -1,73 +1,71 @@
|
||||||
# インスタンス名
|
# Name of your instance
|
||||||
name:
|
name: 'example-instance-name'
|
||||||
|
|
||||||
# インスタンスの紹介
|
# Description of your instance
|
||||||
description:
|
description: 'example-description'
|
||||||
|
|
||||||
# サーバーのメンテナ情報
|
# Maintainer
|
||||||
maintainer:
|
maintainer:
|
||||||
# メンテナの名前
|
# Your name
|
||||||
name:
|
name: 'example-maitainer-name'
|
||||||
|
|
||||||
# メンテナの連絡先(URLかmailto形式のURL)
|
# Your contact (http or mailto)
|
||||||
url:
|
url: 'http://example.com/'
|
||||||
|
|
||||||
# レポジトリのURL
|
# Repository URL
|
||||||
repository_url:
|
repository_url: 'http://example.com/'
|
||||||
|
|
||||||
# フィードバックのURL(issueなど)
|
# Feedback URL (e.g. github issue)
|
||||||
feedback_url:
|
feedback_url: 'http://example.com/'
|
||||||
|
|
||||||
# (Misskeyを動かす)URL
|
# URL
|
||||||
url:
|
url: http://localhost/
|
||||||
|
|
||||||
# 待受ポート
|
port: 80
|
||||||
port:
|
|
||||||
|
|
||||||
# TLSの設定(利用しない場合はフィールドごと削除してください)
|
# TLS (Uncomment if you need)
|
||||||
https:
|
# https:
|
||||||
# 証明書のパス...
|
# # path for certification
|
||||||
key:
|
# key: example-tls-key
|
||||||
cert:
|
# cert: example-tls-cert
|
||||||
|
|
||||||
# MongoDBの設定
|
# MongoDB
|
||||||
mongodb:
|
mongodb:
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 27017
|
port: 27017
|
||||||
db: misskey
|
db: example-db
|
||||||
user:
|
user: example-misskey-user
|
||||||
pass:
|
pass: example-misskey-pass
|
||||||
|
|
||||||
# Redisの設定
|
# Redis
|
||||||
redis:
|
redis:
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 6379
|
port: 6379
|
||||||
pass:
|
pass: 'example-pass'
|
||||||
|
|
||||||
# reCAPTCHAの設定
|
# reCAPTCHA
|
||||||
recaptcha:
|
recaptcha:
|
||||||
site_key:
|
site_key: example-site-key
|
||||||
secret_key:
|
secret_key: example-secret-key
|
||||||
|
|
||||||
# ServiceWorkerの設定
|
# ServiceWorker
|
||||||
sw:
|
sw:
|
||||||
# VAPIDの公開鍵
|
# Public key of VAPID
|
||||||
public_key:
|
public_key: example-sw-public-key
|
||||||
|
|
||||||
# VAPIDの秘密鍵
|
# Private key of VAPID
|
||||||
private_key:
|
private_key: example-sw-private-key
|
||||||
|
|
||||||
# Google Maps API
|
# Google Maps API
|
||||||
google_maps_api_key:
|
google_maps_api_key: example-google-maps-api-key
|
||||||
|
|
||||||
# Twitterインテグレーションの設定(利用しない場合は省略可能)
|
# Twitter integration (can be omitted)
|
||||||
twitter:
|
twitter:
|
||||||
# インテグレーション用アプリのコンシューマーキー
|
consumer_key: example-twitter-consumer-key
|
||||||
consumer_key:
|
consumer_secret: example-twitter-consumer-secret-key
|
||||||
|
|
||||||
# インテグレーション用アプリのコンシューマーシークレット
|
# If enabled:
|
||||||
consumer_secret:
|
# Server will not cache remote files (Using direct link instead).
|
||||||
|
# You can save your storage.
|
||||||
# true にすると、リモートのファイルをキャッシュしなくなります(直リンクします)。
|
# Users cannot see remote images when they turn off "Show media from a remote server" setting.
|
||||||
# ストレージ容量を節約することができますが、「リモートメディアを表示しない」設定をオンにしているユーザーは、リモートの画像などは見えなくなります。
|
|
||||||
preventCache: false
|
preventCache: false
|
||||||
|
|
Loading…
Reference in New Issue