Go to file
dump_stack() b03760e970
Fix source.nix override
2024-01-17 12:38:43 +00:00
auth Keep username/email in response 2023-01-16 19:05:56 +00:00
patches Update characters limit patch 2023-11-20 15:59:28 +00:00
.gitignore Initial 2023-01-09 13:13:56 +00:00
LICENSE Initial 2023-01-09 13:13:56 +00:00
README.md New cli 2023-07-31 21:05:16 +00:00
branding.nix Fix branding generation 2023-01-10 21:42:20 +00:00
configuration.nix Unused 2023-01-12 18:05:12 +00:00
disable-services.nix Fix sidekiq service name 2023-04-20 17:21:40 +00:00
mastodon.nix Fix source.nix override 2024-01-17 12:38:43 +00:00
secrets.nix.example Auth API 2023-01-14 13:44:16 +00:00

README.md

lor.sh

Installation notes

  1. Use the unstable channel.

  2. Prepare the new machine (man nixos)

git clone https://code.dumpstack.io/infra/lor.sh.git /mnt/etc/nixos
nixos-generate-config --root /mnt
sed -i 's/imports = \[/imports = \[\n.\/disable-services.nix/' /mnt/etc/nixos/configuration.nix
vim /mnt/etc/nixos/secrets.nix
nixos-install --no-root-password
reboot
  1. Change DNS A record

  2. Dump the database on the old machine

systemctl stop 'mastodon-*'
su - mastodon
pg_dump -Fc mastodon_production -f backup.dump
  1. Load the database and start the server
sudo -u mastodon pg_restore -Fc -U mastodon -n public --no-owner --role=mastodon -d mastodon backup.dump
sed -i '/disable-services/d' /etc/nixos/configuration.nix
nixos-rebuild switch
sudo -u mastodon mastodon-tootctl feeds build