mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 13:32:08 +07:00
feat: initial commit of trustlab-docs
This commit is contained in:
4
pages/guide/getting-started/_meta.json
Normal file
4
pages/guide/getting-started/_meta.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"install-root-ca": "Install Root CA",
|
||||
"access-dashboard": "Access Dashboard"
|
||||
}
|
||||
5
pages/guide/getting-started/access-dashboard.mdx
Normal file
5
pages/guide/getting-started/access-dashboard.mdx
Normal 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.
|
||||
36
pages/guide/getting-started/install-root-ca.mdx
Normal file
36
pages/guide/getting-started/install-root-ca.mdx
Normal 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.
|
||||
|
||||
Reference in New Issue
Block a user