From 972e53df71f524fa58803e9c5616260a7964306d Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Wed, 1 Mar 2023 19:06:46 +1000 Subject: [PATCH] More documentation --- .../src/locale/src/HelpDoc/en/CertificateAuthorities.md | 7 +++++-- frontend/src/locale/src/HelpDoc/en/Hosts.md | 3 +++ frontend/src/locale/src/HelpDoc/en/Upstreams.md | 3 +++ frontend/src/locale/src/HelpDoc/en/index.ts | 2 ++ 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 frontend/src/locale/src/HelpDoc/en/Hosts.md create mode 100644 frontend/src/locale/src/HelpDoc/en/Upstreams.md diff --git a/frontend/src/locale/src/HelpDoc/en/CertificateAuthorities.md b/frontend/src/locale/src/HelpDoc/en/CertificateAuthorities.md index 918a211f..fbba8f06 100644 --- a/frontend/src/locale/src/HelpDoc/en/CertificateAuthorities.md +++ b/frontend/src/locale/src/HelpDoc/en/CertificateAuthorities.md @@ -2,8 +2,8 @@ ## What is a Certificate Authority? -A **certificate authority (CA)**, also sometimes referred to as a -**certification authority**, is a company or organization that acts to validate +A **Certificate Authority (CA)**, also sometimes referred to as a +**Certification Authority**, is a company or organization that acts to validate the identities of entities (such as websites, email addresses, companies, or individual persons) and bind them to cryptographic keys through the issuance of electronic documents known as digital certificates. @@ -24,3 +24,6 @@ greater understanding of the SSL ecosystem. When requesting SSL Certificates through your custom CA and while they will be successful, browsers will not automatically trust your CA and visiting hosts using certificates issued by that CA will show errors. + +- [StepCA](https://smallstep.com/docs/step-ca) +- [Pebble](https://github.com/letsencrypt/pebble) diff --git a/frontend/src/locale/src/HelpDoc/en/Hosts.md b/frontend/src/locale/src/HelpDoc/en/Hosts.md new file mode 100644 index 00000000..3e33b2a7 --- /dev/null +++ b/frontend/src/locale/src/HelpDoc/en/Hosts.md @@ -0,0 +1,3 @@ +# Hosts Help + +todo diff --git a/frontend/src/locale/src/HelpDoc/en/Upstreams.md b/frontend/src/locale/src/HelpDoc/en/Upstreams.md new file mode 100644 index 00000000..1a7f99fb --- /dev/null +++ b/frontend/src/locale/src/HelpDoc/en/Upstreams.md @@ -0,0 +1,3 @@ +# Upstreams Help + +todo diff --git a/frontend/src/locale/src/HelpDoc/en/index.ts b/frontend/src/locale/src/HelpDoc/en/index.ts index d79fb272..eda71d6d 100644 --- a/frontend/src/locale/src/HelpDoc/en/index.ts +++ b/frontend/src/locale/src/HelpDoc/en/index.ts @@ -2,4 +2,6 @@ export * as AccessLists from "./AccessLists.md"; export * as Certificates from "./Certificates.md"; export * as CertificateAuthorities from "./CertificateAuthorities.md"; export * as DNSProviders from "./DNSProviders.md"; +export * as Hosts from "./Hosts.md"; export * as NginxTemplates from "./NginxTemplates.md"; +export * as Upstreams from "./Upstreams.md";