feat: initial commit of trustlab-docs

This commit is contained in:
dyzulk
2026-01-08 15:03:32 +07:00
commit 6c5b0c53ae
31 changed files with 8109 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
{
"install-root-ca": "Install Root CA",
"access-dashboard": "Access Dashboard"
}

View File

@@ -0,0 +1,5 @@
# Accessing Dashboard
1. Navigate to [https://trustlab.dyzulk.com](https://trustlab.dyzulk.com).
2. Click "Login".
3. Use your SSO credentials or Magic Link.

View File

@@ -0,0 +1,36 @@
import { CertificateDownload } from '../../../components/CertificateDownload'
# Installing Root CA
To ensure your browser trusts certificates issued by TrustLab, you must install our Root CA.
<div className="my-8">
<CertificateDownload />
</div>
## Manual Installation Guide
### Windows
1. Download the Root CA (`.crt`) or use the auto-installer above.
2. Double-click to open.
3. Click "Install Certificate".
4. Select "Local Machine" (Requires Admin).
5. Choose "Place all certificates in the following store" -> **Trusted Root Certification Authorities**.
### macOS
1. Download the Root CA.
2. Open in Keychain Access.
3. Double-click the certificate.
4. Expand "Trust" and select "Always Trust".
### Linux (Debian/Ubuntu)
```bash
sudo cp trustlab-root.crt /usr/local/share/ca-certificates/
sudo update-ca-certificates
```
### Android
1. Settings > Security > Encryption & Credentials.
2. Install a certificate > CA Certificate.
3. Select the downloaded `.crt` or `.der` file.