Go to file
dump_stack() 86a52f0163
Keep username/email in response
2023-01-16 19:05:56 +00:00
auth Keep username/email in response 2023-01-16 19:05:56 +00:00
patches Add max_toot_chars to API v1 2023-01-12 12:51:21 +00:00
.gitignore Initial 2023-01-09 13:13:56 +00:00
LICENSE Initial 2023-01-09 13:13:56 +00:00
README.md Installation notes 2023-01-10 15:29:32 +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 Switch to Caddy 2023-01-12 12:19:13 +00:00
mastodon.nix Auth API 2023-01-14 13:44:16 +00:00
secrets.nix.example Auth API 2023-01-14 13:44:16 +00:00

README.md

lor.sh

Installation notes

  1. 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
su - mastodon -s "$(which bash)" -c 'mastodon-env tootctl feeds build'