公式のワンクリックスクリプトを使用する#
クリーンな Ubuntu システムを使用して、デュアルコアの 4 スレッドを推奨します。
ソフトウェアの更新#
sudo apt update; sudo apt full-upgrade -y; sudo reboot
ワンクリックスクリプト#
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/ubuntu.sh -O ubuntu.sh; sudo bash ubuntu.sh
プロンプトに従って入力してください。
Misskey スクリプトの更新#
Misskey のスクリプトはランタイム環境をアップグレードしません。スクリプトの更新内容については、「更新ログ」を参照してください。
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/update.ubuntu.sh -O update.sh
sudo bash update.sh
- systemd を使用している場合、-r を追加するとシステムを更新して再起動できます。
- Docker を使用している場合、特定のソフトウェアパッケージのバージョンリポジトリ:タグを使用して更新できます。
Docker Compose を使用してデプロイする#
必要な環境#
- git
- docker
- nginx
手順#
リポジトリをクローンする#
cd /opt
git clone -b master https://github.com/misskey-dev/misskey.git
cd misskey
git checkout master
設定ファイルをコピーする:#
cp .config/example.yml .config/default.yml
cp .config/docker_example.env .config/docker.env
cp docker-compose.yml.example docker-compose.yml
default.yml を編集する#
url
をインスタンスのドメインに設定する
db:host
をdb
に設定する
redis:host
をredis
に設定する
イメージをビルドする#
docker compose build
docker compose run --rm web yarn run init
完了したら
コンテナを起動する#
docker compose up -d
リバースプロキシの設定#
以下を参考にしてください
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
proxy_cache_path /tmp/nginx_cache levels=1:2 keys_zone=cache1:16m max_size=1g inactive=720m use_temp_path=off;
server {
listen 80;
listen [::]:80;
server_name misskey.example.com;
client_max_body_size 0;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache cache1;
proxy_cache_lock on;
proxy_cache_use_stale updating;
add_header X-Cache $upstream_cache_status;
}
}