You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2022/06/09 00:05:26 UTC

[apisix-ingress-controller] branch master updated: docs: correct typo & link (#1073)

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new f0d64b6d docs: correct typo & link (#1073)
f0d64b6d is described below

commit f0d64b6d8ce4f4f1b5f15d03938f3a87b71a84a8
Author: 罗泽轩 <sp...@gmail.com>
AuthorDate: Thu Jun 9 08:05:22 2022 +0800

    docs: correct typo & link (#1073)
    
    Co-authored-by: Jintao Zhang <ta...@163.com>
---
 docs/en/latest/concepts/annotations.md   | 2 +-
 docs/en/latest/concepts/apisix_route.md  | 4 ++--
 docs/en/latest/design.md                 | 2 +-
 docs/en/latest/practices/mtls.md         | 2 +-
 docs/en/latest/practices/the-hard-way.md | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/en/latest/concepts/annotations.md b/docs/en/latest/concepts/annotations.md
index 02163545..ff215ccd 100644
--- a/docs/en/latest/concepts/annotations.md
+++ b/docs/en/latest/concepts/annotations.md
@@ -141,7 +141,7 @@ You can use the follow annotations to enable path regular expression
   
 If this annotations set to `true` and the `PathType` set to `ImplementationSpecific`, the path will be match as regular expression.
 
-For example, the follwing Ingress. Request path with `/api/*/action1` will use `service1` and `/api/*/action2` will be use `service2`
+For example, the following Ingress. Request path with `/api/*/action1` will use `service1` and `/api/*/action2` will be use `service2`
 
 ```yaml
 apiVersion: networking.k8s.io/v1
diff --git a/docs/en/latest/concepts/apisix_route.md b/docs/en/latest/concepts/apisix_route.md
index d4095d10..94432b42 100644
--- a/docs/en/latest/concepts/apisix_route.md
+++ b/docs/en/latest/concepts/apisix_route.md
@@ -184,12 +184,12 @@ spec:
 
 The above `ApisixRoute` has one route rule, which contains two backends `foo` and `bar`, the weight ratio is `100:50`,
 which means `2/3` requests (with `GET` method and `User-Agent` matching regex pattern `.*Chrome.*`) will be sent to service `foo` and `1/3` requests
-will be proxied to serivce `bar`.
+will be proxied to service `bar`.
 
 Plugins
 -------
 
-Apache APISIX provides more than 40 [plugins](https://github.com/apache/apisix/tree/master/docs/en/latest/plugins), which can be used
+Apache APISIX provides more than 70 [plugins](https://github.com/apache/apisix/tree/master/docs/en/latest/plugins), which can be used
 in `ApisixRoute`. All configuration items are named same to the one in APISIX.
 
 ```yaml
diff --git a/docs/en/latest/design.md b/docs/en/latest/design.md
index de6bd63e..9c2b2b89 100644
--- a/docs/en/latest/design.md
+++ b/docs/en/latest/design.md
@@ -59,7 +59,7 @@ Apache APISIX ingress for Kubernetes.
 
 ## CRD design
 
-Currently `apisix-ingress-controller` CRDs consist of 3 parts: ApisixRoute/ApisixUpstream. The design follows the following ideas.
+Currently `apisix-ingress-controller` CRDs consist of 6 parts: ApisixRoute/ApisixUpstream/ApisixConsumer/ApisixTls/ApisixClusterConfig/ApisixPluginConfig. The design follows the following ideas.
 
 1. The most important part of the gateway is the route part, which is used to define the distribution rules of the gateway traffics.
 2. In order to facilitate understanding and configuration, the design structure of `ApisixRoute` is basically similar to Kubernetes Ingress.
diff --git a/docs/en/latest/practices/mtls.md b/docs/en/latest/practices/mtls.md
index daed36e5..ba966bd1 100644
--- a/docs/en/latest/practices/mtls.md
+++ b/docs/en/latest/practices/mtls.md
@@ -88,7 +88,7 @@ It should output:
 
 Before configuring SSL, we must have certificates. Certificates often authorized by certificate provider, which also known as Certification Authority (CA).
 
-You can use [OpenSSL](https://en.wikipedia.org/wiki/Openssl) to generate self-signed certificates for testing purposes. Some pre-generated certificates for this guide are [here](./mtls).
+You can use [OpenSSL](https://en.wikipedia.org/wiki/Openssl) to generate self-signed certificates for testing purposes. Some pre-generated certificates for this guide are [here](https://github.com/apache/apisix-ingress-controller/tree/master/docs/en/latest/practices/mtls).
 
 - `ca.pem`: The root CA.
 - `server.pem` and `server.key`: Server certificate used to enable SSL (https). Contains correct `subjectAltName` matches domain `mtls.httpbin.local`.
diff --git a/docs/en/latest/practices/the-hard-way.md b/docs/en/latest/practices/the-hard-way.md
index 259a7829..dab4e981 100644
--- a/docs/en/latest/practices/the-hard-way.md
+++ b/docs/en/latest/practices/the-hard-way.md
@@ -200,7 +200,7 @@ data:
       dns_resolver_valid: 30
       resolver_timeout: 5
 
-    nginx_config:                     # config for render the template to genarate nginx.conf
+    nginx_config:                     # config for render the template to generate nginx.conf
       error_log: "/dev/stderr"
       error_log_level: "warn"         # warn,error
       worker_rlimit_nofile: 20480     # the number of files a worker process can open, should be larger than worker_connections