lwc:networking:social_networking:pds_blue_sky

This is an old revision of the document!


Completed on Digital Ocean Ubuntu 22.04 droplet

The

  • NGINX, Letsencrypt installed, working, happy

The installer assumes ports 80 and 443 are available and launches a Docker instance of Caddy to serve. This will conflict with NGINX but the installer still gets us started:

wget https://raw.githubusercontent.com/bluesky-social/pds/main/installer.sh
sudo bash installer.sh

You'll see from your list of Docker instances that Caddy didn't start OK. Kill all the instances related to PDS by listing them, stopping them, then removing them:

docker ps
docker stop <instance>
docker kill <instance>

To get things to work correctly we are going to need to replace compose.yaml with something that doesn't start Caddy. Here's a modification of the one found here. For a standard install you'll put compose.yaml in /pds

version: '3.9'
services:
  pds:
    container_name: pds
    image: ghcr.io/bluesky-social/pds:0.4
    restart: unless-stopped
    volumes:
      - type: bind
        source: /pds
        target: /pds
    ports:
      - '3000:3000'
    env_file:
      - /pds/pds.envroot@togettech-main:/pds
  • Now restart PDS with docker compose up -d. (It appears a better way might be systemctl restart pds.service)
  • Make sure all the docker instances are running OK. Use sudo docker logs -f pds to see the logs
  • Finally, check if the instance is accessible locally:
wget http://localhost:3000/xrpc/_health

should return something close to:{"version":"0.4.74"}

In /etc/nginx/sites-available create a file (could be named pds):

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

server {
    server_name <YOUR DOMAIN NAME HERE. COULD HAVE SUBDOMAIN. EXAMPLE: pds.johnharrison.cc>;

    location /xrpc {
        proxy_pass http://localhost:3000;
        proxy_set_header X-Forwarded-Proto https;
        proxy_set_header Host            $host;

        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
    }

    location /.well-known/atproto-did {
        proxy_pass http://localhost:3000/.well-known/atproto-did;
        proxy_set_header Host            $host;
    }
  • Make sure NGINX config is happy: nginx -t
  • Whereever you keep your DNS settings for your domain, add one for the domain/subdomain you just set up.
  • Once the (sub)domain resolves correctly it's time for letsencrypt: certbot --nginx will expand your existing certificate to include all (sub)domains nginx serves
  • Check for external access:
wget https://<YOUR DOMAIN>/xrpc/_health

should return something close to:{"version":"0.4.74"}

  • Check if websockets are working:
wsdump "wss://example.com/xrpc/com.atproto.sync.subscribeRepos?cursor=0"

If you don't see an error such as unauthorized it's probably working. There won't be much output yet. If it's not working, it's a problem in your Nginx config

This requires a Go app called Goat which is provided by Bluesky. This can be installed on any machine i.e. it doesn't have to be installed on the local PDS

  • install a current version Go if you don't already have it. Snap is an option but Snaps often give me trouble so I went downloading and installing:
wget https://go.dev/dl/go-INSERT_CURRENT_VERSION_HERE.linux-amd64.tar.gz
sudo tar -C /usr/local -xvf goINSERT_CURRENT_VERSION_HERE.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
go version # verify it's working
  • next this is suppose to work but gave me an error: go install github.com/bluesky-social/indigo/cmd/goat@latest
  • So instead I downloaded from Git and installed that way:
git clone https://github.com/bluesky-social/indigo
go build ./cmd/goat
sudo cp goat /usr/local/bin
goat --version # confirm it's working
  • log into your old account with goat and request token to your email:
goat account login -u $OLDHANDLE -p $OLDPASSWORD''
goat account plc request-token
goat account migrate \
    --pds-host https://blueskydemo.hyprlab.co \
    --new-handle jasondemo.blueskydemo.hyprlab.co \
    --new-password tPVQ9oRLwfAqq7gz \
    --new-email servers@hyprlab.co \
    --plc-token QUCDK-SHTBV \
    --invite-code blueskydemo-hyprlab-co-lz3di-wlsvy
  • It took a few tries to get everything in this command right. If it fails you need to delete the incomplete migration before trying again:
pdsadmin account list
pdsadmin account delete $YOURDID
  • lwc/networking/social_networking/pds_blue_sky.1738329598.txt.gz
  • Last modified: 2025/01/31 07:19
  • by John Harrison