• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

S-H-GAMELINKS/MastodonScript: Mastodonのアップデートをよしなにしてくれるもの ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

S-H-GAMELINKS/MastodonScript

开源软件地址(OpenSource Url):

https://github.com/S-H-GAMELINKS/MastodonScript

开源编程语言(OpenSource Language):

Shell 100.0%

开源软件介绍(OpenSource Introduction):

MastodonUpdateScript

概要

Mastodonのインストール&アップデートをよしなにしてくれるもの

基本的に、公式ドキュメント通りにインスタンスを設置します。

独自実装などをしているなどの場合は適宜書き換えてご使用ください。

License

These codes are licensed under CC0.

CC0

Mastodonのインストール(mastodon.shを使う場合)

まず、git clone し、作成した script ディレクトリに移動します。

git clone https://github.com/S-H-GAMELINKS/MastodonScript.git script && cd script

次に、mastodon.sh を実行するだけ

sh mastodon.sh <domain>

しばらくするとmastodonアカウントへのログインを実行します。 パスワードを入力後、以下のコマンドを実行してください

echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc && echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc
exit

その後、再びmastodonアカウントへのログインを実行します。 再度、パスワードを入力してください。 ログイン後以下のコマンドを実行してください。

rbenv install 2.5.1 && rbenv global 2.5.1
exit

もう一度、mastodonアカウントへのログインを実行しますので 以下のコマンドを実行してください。

cd ~/live && gem install bundler && bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test && yarn install --pure-lockfile

その後、postgresが起動するので、以下のコマンドを入力。

CREATE USER mastodon CREATEDB;
\q

また、Nginxの設定を編集するためにviが起動した際には、以下の内容を編集して貼り付けること

map $http_upgrade $connection_upgrade {
  default upgrade;
  ''      close;
}

server {
  listen 80;
  listen [::]:80;
  server_name <ドメイン>;
  root /home/mastodon/live/public;
  # Useful for Let's Encrypt
  location /.well-known/acme-challenge/ { allow all; }
  location / { return 301 https://$host$request_uri; }
}

server {
  listen 443 ssl http2;
  listen [::]:443 ssl http2;
  server_name <ドメイン>;

  ssl_protocols TLSv1.2;
  ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
  ssl_prefer_server_ciphers on;
  ssl_session_cache shared:SSL:10m;

  ssl_certificate     /etc/letsencrypt/live/<ドメイン>/fullchain.pem;
  ssl_certificate_key /etc/letsencrypt/live/<ドメイン>/privkey.pem;

  keepalive_timeout    70;
  sendfile             on;
  client_max_body_size 8m;

  root /home/mastodon/live/public;

  gzip on;
  gzip_disable "msie6";
  gzip_vary on;
  gzip_proxied any;
  gzip_comp_level 6;
  gzip_buffers 16 8k;
  gzip_http_version 1.1;
  gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

  add_header Strict-Transport-Security "max-age=31536000";

  location / {
    try_files $uri @proxy;
  }

  location ~ ^/(emoji|packs|system/accounts/avatars|system/media_attachments/files) {
    add_header Cache-Control "public, max-age=31536000, immutable";
    try_files $uri @proxy;
  }
  
  location /sw.js {
    add_header Cache-Control "public, max-age=0";
    try_files $uri @proxy;
  }

  location @proxy {
    proxy_set_header Host $host;
    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 Proxy "";
    proxy_pass_header Server;

    proxy_pass http://127.0.0.1:3000;
    proxy_buffering off;
    proxy_redirect off;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;

    tcp_nodelay on;
  }

  location /api/v1/streaming {
    proxy_set_header Host $host;
    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 Proxy "";

    proxy_pass http://127.0.0.1:4000;
    proxy_buffering off;
    proxy_redirect off;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;

    tcp_nodelay on;
  }

  error_page 500 501 502 503 504 /500.html;
}

その後、Letsencryptが起動し、メールアドレスと規約の確認を要求されます。 メールアドレスを入力して進んでください。

再び、mastodonアカウントにログインします。 以下のコマンドを実行して、Mastodonの本番環境の設定を編集します。

cd ~/live && RAILS_ENV=production bundle exec rake mastodon:setup
exit

最後に、Mastodonのserviceファイル編集の為にviが起動するので 以下の内容をそれぞれのserviceに張り付ける。

[Unit]
Description=mastodon-web
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="RAILS_ENV=production"
Environment="PORT=3000"
ExecStart=/home/mastodon/.rbenv/shims/bundle exec puma -C config/puma.rb
ExecReload=/bin/kill -SIGUSR1 $MAINPID
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target
[Unit]
Description=mastodon-sidekiq
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="RAILS_ENV=production"
Environment="DB_POOL=5"
ExecStart=/home/mastodon/.rbenv/shims/bundle exec sidekiq -c 5 -q default -q mailers -q pull -q push
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target
[Unit]
Description=mastodon-streaming
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="NODE_ENV=production"
Environment="PORT=4000"
ExecStart=/usr/bin/npm run start
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target

この後、アドレスバーに設定したドメインを入力してMasotodonが表示されていたら、インスタンスの設置は完了です

Mastodonのインストール(mastodon.shを使わない場合)

まず、git clone し、作成した script ディレクトリに移動します。

git clone https://github.com/S-H-GAMELINKS/MastodonScript.git script && cd script

次に、env_setting.sh を実行し、mastodonアカウントを作成

sh env_setting.sh

作成したmastodonアカウントに切り替え、git cloneを実行。 同様に、scriptディレクトリに移動します。

su - mastodon
git clone https://github.com/S-H-GAMELINKS/MastodonScript.git script && cd script

rbenvをインストールするshellを実行。

sh rbenv_install.sh

その後、一旦bashを再起動。

exec bash

そして、Rubyをインストールする。

sh ruby_install.sh

Mastodonのリポジトリをcloneし、bundle installとかをしてくれるmastodon_install.shを実行。

sh mastodon_install.sh

そのあと、rootに戻ってsetup_postgres_and_ssl.shを実行する。 この時、引数に設定したいドメインを渡すこと

exit
sh setup_postgres_and_ssl.sh <ドメイン> 

postgresが起動するので、以下のコマンドを入力。

CREATE USER mastodon CREATEDB;
\q

また、viが起動した際には、以下の内容を編集して貼り付けること

map $http_upgrade $connection_upgrade {
  default upgrade;
  ''      close;
}

server {
  listen 80;
  listen [::]:80;
  server_name <ドメイン>;
  root /home/mastodon/live/public;
  # Useful for Let's Encrypt
  location /.well-known/acme-challenge/ { allow all; }
  location / { return 301 https://$host$request_uri; }
}

server {
  listen 443 ssl http2;
  listen [::]:443 ssl http2;
  server_name <ドメイン>;

  ssl_protocols TLSv1.2;
  ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
  ssl_prefer_server_ciphers on;
  ssl_session_cache shared:SSL:10m;

  ssl_certificate     /etc/letsencrypt/live/<ドメイン>/fullchain.pem;
  ssl_certificate_key /etc/letsencrypt/live/<ドメイン>/privkey.pem;

  keepalive_timeout    70;
  sendfile             on;
  client_max_body_size 8m;

  root /home/mastodon/live/public;

  gzip on;
  gzip_disable "msie6";
  gzip_vary on;
  gzip_proxied any;
  gzip_comp_level 6;
  gzip_buffers 16 8k;
  gzip_http_version 1.1;
  gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

  add_header Strict-Transport-Security "max-age=31536000";

  location / {
    try_files $uri @proxy;
  }

  location ~ ^/(emoji|packs|system/accounts/avatars|system/media_attachments/files) {
    add_header Cache-Control "public, max-age=31536000, immutable";
    try_files $uri @proxy;
  }
  
  location /sw.js {
    add_header Cache-Control "public, max-age=0";
    try_files $uri @proxy;
  }

  location @proxy {
    proxy_set_header Host $host;
    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 Proxy "";
    proxy_pass_header Server;

    proxy_pass http://127.0.0.1:3000;
    proxy_buffering off;
    proxy_redirect off;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;

    tcp_nodelay on;
  }

  location /api/v1/streaming {
    proxy_set_header Host $host;
    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 Proxy "";

    proxy_pass http://127.0.0.1:4000;
    proxy_buffering off;
    proxy_redirect off;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;

    tcp_nodelay on;
  }

  error_page 500 501 502 503 504 /500.html;
}

再び、mastodonアカウントに戻って、Mastodonの諸設定を実行する。

su - mastodon
cd script
sh setup_mastodon.sh

セットアップが終了後、rootに戻ってsetup_service.shを実行し、Mastodonのインストールは終了。

sh setup_service.sh

途中、viが起動するの以下の内容をそれぞれの.serviceに張り付ける。

[Unit]
Description=mastodon-web
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="RAILS_ENV=production"
Environment="PORT=3000"
ExecStart=/home/mastodon/.rbenv/shims/bundle exec puma -C config/puma.rb
ExecReload=/bin/kill -SIGUSR1 $MAINPID
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target
[Unit]
Description=mastodon-sidekiq
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="RAILS_ENV=production"
Environment="DB_POOL=5"
ExecStart=/home/mastodon/.rbenv/shims/bundle exec sidekiq -c 5 -q default -q mailers -q pull -q push
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target
[Unit]
Description=mastodon-streaming
After=network.target

[Service]
Type=simple
User=mastodon
WorkingDirectory=/home/mastodon/live
Environment="NODE_ENV=production"
Environment="PORT=4000"
ExecStart=/usr/bin/npm run start
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target

Mastodonのアップデート(update.shを使う場合)

同梱されているupdate.shmastodonアカウントで実行すればアップデートは自動的に処理されます。

su - mastodon
cd script
sh update.sh

アップデート終了後、rootへ戻り、Mastodonを再起動します。

exit
sudo systemctl restart mastodon-*.service

環境によっては足りないライブラリなどがあると思うので、それらは適宜インストールしてご利用ください。

Mastodonのアップデート(mastodon_update.shを使う場合)

同梱されているmastodon_update.shrootアカウントで実行すればアップデートは自動的に処理されます。

cd script
sh update.sh

アップデート終了後、自動的にMastodonを再起動します。

環境によっては足りないライブラリなどがあると思うので、それらは適宜インストールしてご利用ください。

参考

ゼロからはじめるMastodon インスタンス運用編

Mastodon Production Guide




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap