The HA story that didn't exist before 2021
Litestream (Ben Johnson, 2021) added continuous streaming replication on top of unmodified SQLite. It tails the WAL and ships incremental changes to S3 (or sftp / GCS / Azure / file). On disaster, you restore from the latest replica with seconds of data loss.
LiteFS (also Fly.io) extended this to a clustered filesystem with synchronous writes — multi-node SQLite with strong consistency.
Turso took the libSQL fork and built a managed multi-region service. Cloudflare D1 bundles SQLite into the Workers runtime. Litesync and others fill adjacent niches.
The point: SQLite's 'no replication' objection was real for two decades and is no longer real today. For a single-region web app, Litestream alone is usually enough. For multi-region writes, Turso or LiteFS.