diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-29 11:34:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-29 11:34:26 +0900 |
| commit | f728fb4a1174ef981b8d9f4d789488d4040e1f29 (patch) | |
| tree | 2adbae0df33f7d4305012bb08190dcb2d2eff9d3 /docs | |
| parent | Update Dockerfile (diff) | |
| download | sharkey-f728fb4a1174ef981b8d9f4d789488d4040e1f29.tar.gz sharkey-f728fb4a1174ef981b8d9f4d789488d4040e1f29.tar.bz2 sharkey-f728fb4a1174ef981b8d9f4d789488d4040e1f29.zip | |
:v:
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/config.md | 60 | ||||
| -rw-r--r-- | docs/setup.en.md | 6 | ||||
| -rw-r--r-- | docs/setup.ja.md | 6 |
3 files changed, 6 insertions, 66 deletions
diff --git a/docs/config.md b/docs/config.md deleted file mode 100644 index c4a54c0bee..0000000000 --- a/docs/config.md +++ /dev/null @@ -1,60 +0,0 @@ -``` yaml -# サーバーのメンテナ情報 -maintainer: - # メンテナの名前 - name: - - # メンテナの連絡先(URLかmailto形式のURL) - url: - -# (Misskeyを動かす)URL -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: - -# Google Maps API -google_maps_api_key: - -# Twitterインテグレーションの設定(利用しない場合は省略可能) -twitter: - # インテグレーション用アプリのコンシューマーキー - consumer_key: - - # インテグレーション用アプリのコンシューマーシークレット - consumer_secret: - -``` diff --git a/docs/setup.en.md b/docs/setup.en.md index 08cd16857d..a436d751c8 100644 --- a/docs/setup.en.md +++ b/docs/setup.en.md @@ -37,9 +37,9 @@ Please install and setup these softwares: *3.* Prepare configuration ---------------------------------------------------------------- -First, you need to create a `.config` directory in the directory that -Misskey installed. And then you need to create a `default.yml` file in -the directory. The template of configuration is available [here](./config.md). +1. Copy `example.yml` of `.config` directory +2. Rename it to `default.yml` +3. Edit it *4.* Install and build Misskey ---------------------------------------------------------------- diff --git a/docs/setup.ja.md b/docs/setup.ja.md index 9fa56acb22..6605461d9f 100644 --- a/docs/setup.ja.md +++ b/docs/setup.ja.md @@ -37,9 +37,9 @@ web-push generate-vapid-keys *3.* 設定ファイルを用意する ---------------------------------------------------------------- -Misskeyをインストールしたディレクトリに、`.config`というディレクトリを作成し、 -その中に`default.yml`という名前で設定ファイルを作ってください。 -設定ファイルの下書きは[ここ](./config.md)にありますので、コピペしてご利用ください。 +1. `.config`ディレクトリ内の`example.yml`をコピー +2. `default.yml`にリネーム +3. 編集する *4.* Misskeyのインストール(とビルド) ---------------------------------------------------------------- |