From 282f2e9a935a8afd1406be10458470200dff207d Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:39:38 +0700 Subject: [PATCH] docs: add linux manual guide and intermediate ca section --- .../guide/getting-started/install-root-ca.mdx | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/pages/guide/getting-started/install-root-ca.mdx b/pages/guide/getting-started/install-root-ca.mdx index d66269e..ea29c0e 100644 --- a/pages/guide/getting-started/install-root-ca.mdx +++ b/pages/guide/getting-started/install-root-ca.mdx @@ -57,7 +57,7 @@ import { Steps } from 'nextra/components' If you prefer to install certificates manually, follow these steps for your operating system. - + ### Download the Certificate @@ -105,5 +105,33 @@ If you prefer to install certificates manually, follow these steps for your oper Select "Install anyway" if prompted, then choose the downloaded file. + + + ### Download + Download the **[Root CA (.crt)](https://cdn.trustlab.dyzulk.com/ca/dydev-its-true.crt)** file. + + ### Install (Debian/Ubuntu) + Copy the file to the CA directory: + ```bash + sudo cp dydev-its-true.crt /usr/local/share/ca-certificates/trustlab-root.crt + ``` + + ### Update Store + Update the CA store: + ```bash + sudo update-ca-certificates + ``` + *For RHEL/CentOS, copy to `/etc/pki/ca-trust/source/anchors/` and run `update-ca-trust`.* + + +## Intermediate Certificates + +In most cases, installing the Root CA is sufficient for client trust. However, for server configuration or specific use cases, you may need the Intermediate CAs. + +| Certificate | Algorithm | Download | +| :--- | :--- | :--- | +| **TrustLab Intermediate CA** | RSA 4096 | **[Download (.crt)](https://cdn.trustlab.dyzulk.com/ca/trustlab-intermediate-ca-4096.crt)** | +| **TrustLab Intermediate CA** | RSA 2048 | **[Download (.crt)](https://cdn.trustlab.dyzulk.com/ca/trustlab-intermediate-ca-2048.crt)** | +