verita.it.com
Short-link · Verita family

One mnemonic on a card.
The right product behind it.

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.

Aliases

Six short URLs, six siblings.

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.

VeritaCrypt

Sign & notarize files and events.

verita.it.com/crypt → veritacrypt.com

VeritaPath

Trace the lineage of records.

verita.it.com/path → veritapath.com

VeritaVault

Seal secrets, prove every access.

verita.it.com/vault → veritavault.com

VeritaPad

P2P messaging with a provable transcript.

verita.it.com/pad → veritapad.com

VeritaBase

Shared identity + offline verifier.

verita.it.com/base → veritabase.com
How it works

A 302 in an nginx config. Nothing more.

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.

Why a shortener for a crypto family?

Because receipts get printed.

Business cards & stamps

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 codes that stay sharp

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².

Resilience to rebrand

If a sibling's canonical domain ever changes, printed URLs don't become 404s. The redirect is updated centrally; every printed artifact keeps working.

One name to remember

Italian verità = "truth." The pun is the point — six cryptographic products behind one word you already know how to pronounce.

Family

Seven surfaces. One signature scheme.

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.