verita.it.com is the compact front door to the
Verita- family. Put the short URL on a business card, a PDF footer,
a notary stamp, or a QR code — the redirect brings the reader to the right
sibling product every time.
Each alias 302-redirects to the canonical sibling domain. The targets can change during build-out without breaking anything printed — browsers will re-fetch the redirect rather than caching it forever.
Sign & notarize files and events.
Trace the lineage of records.
Preserve and prove URL destinations.
Seal secrets, prove every access.
P2P messaging with a provable transcript.
Shared identity + offline verifier.
No app server. No tracking. No JavaScript. Each alias is a static return 302 rule in the site's nginx config. To add or change a target, edit one line and reload nginx — that's the whole operational surface.
# deploy/nginx/verita.it.com (excerpt) location = /crypt { return 302 https://veritacrypt.com/; } location = /path { return 302 https://veritapath.com/; } location = /link { return 302 https://veritalink.com/; } location = /vault { return 302 https://veritavault.com/; } location = /pad { return 302 https://veritapad.com/; } location = /base { return 302 https://veritabase.com/; }
Over time this grows to include receipt slugs
(/r/<hash>), a hosted verifier
(/v/<hash>), and per-user
identity cards (/@<handle>) —
but the family aliases above stay as plain static redirects. Small
surface, small failure mode.
A notary stamp has ~20 characters to spare for a URL. verita.it.com/@jane fits; https://veritacrypt.com/u/jane-doe-A7B3… does not.
QR module density scales with payload length. Shorter URLs mean smaller codes that still scan cleanly from across a table and print at 1 cm².
If a sibling's canonical domain ever changes, printed URLs don't become 404s. The redirect is updated centrally; every printed artifact keeps working.
Italian verità = "truth." The pun is the point — six cryptographic products behind one word you already know how to pronounce.
Every sibling product shares the same Ed25519 identity, the same hash-chained log shape, and the same offline verifier (all three live under VeritaBase). verita.it.com is the compact public face that ties the whole thing together in printed form.