Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
at main 283 B view raw
1:80 { 2 @xrpc { 3 path /xrpc/* 4 path /.well-known/* 5 } 6 7 # Handle /xrpc/ routes - forward to the API backend (web service) 8 handle @xrpc { 9 reverse_proxy localhost:3000 10 } 11 12 # Handle all other routes - forward to the web-ui frontend 13 handle /* { 14 reverse_proxy localhost:3001 15 } 16}