使用官方推薦一鍵腳本#
使用純淨的 Ubuntu 系統安裝,推薦配置雙核心四線程。
更新軟體#
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 的小夥伴,可以特定軟體包版本 repository 來更新。
使用 docker compose 部署#
環境#
- git
- docker
- nginx
步驟#
git 克隆倉庫#
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;
}
}