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-website.git
The following commit(s) were added to refs/heads/master by this push:
new 2b43e5a fix: update word forensic to authentication (#869)
2b43e5a is described below
commit 2b43e5aeff92c2aabac14a540426de555cef238d
Author: Sylvia <[email protected]>
AuthorDate: Mon Feb 7 17:08:44 2022 +0800
fix: update word forensic to authentication (#869)
---
website/blog/2021/05/25/Apache APISIX 2.6.0-Release.md | 2 +-
website/blog/2021/08/19/go-makes-Apache-APISIX-better.md | 2 +-
website/blog/2021/09/07/how-to-use-apisix-auth.md | 2 +-
website/blog/2022/01/25/release-apache-apisix-2.12.md | 6 +++---
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/website/blog/2021/05/25/Apache APISIX 2.6.0-Release.md
b/website/blog/2021/05/25/Apache APISIX 2.6.0-Release.md
index 2d774d4..7997a68 100644
--- a/website/blog/2021/05/25/Apache APISIX 2.6.0-Release.md
+++ b/website/blog/2021/05/25/Apache APISIX 2.6.0-Release.md
@@ -20,7 +20,7 @@ tags: [Release]
### New feature: APISIX now supports writing custom plugins in other languages
-APISIX now supports writing plug-ins in Lua to perform custom logic during
proxy requests, such as calling webhook to notify external systems, performing
special forensic logic, and so on. However, there are cases where developers
may want to write plugins in languages other than Lua.
+APISIX now supports writing plug-ins in Lua to perform custom logic during
proxy requests, such as calling webhook to notify external systems, performing
special authentication logic, and so on. However, there are cases where
developers may want to write plugins in languages other than Lua.
For example, developers are not familiar with Lua and want to write plugins in
a language they are familiar with, or third-party teams only provide the Java
SDK and there is no way to use it inside Lua plugins.
diff --git a/website/blog/2021/08/19/go-makes-Apache-APISIX-better.md
b/website/blog/2021/08/19/go-makes-Apache-APISIX-better.md
index d9faf88..05c57b8 100644
--- a/website/blog/2021/08/19/go-makes-Apache-APISIX-better.md
+++ b/website/blog/2021/08/19/go-makes-Apache-APISIX-better.md
@@ -19,7 +19,7 @@ tags: [Practical Case]
## Why Go
-[Apache APISIX](https://github.com/apache/apisix) allows users to extend
functionality by way of plugins. Core features such as forensics, flow
restriction, request rewriting, etc. are implemented by way of plugins.
Although the core code of Apache APISIX is written in Lua, Apache APISIX
supports multi-language development of plugins, such as Go, Java.
+[Apache APISIX](https://github.com/apache/apisix) allows users to extend
functionality by way of plugins. Core features such as authentication, flow
restriction, request rewriting, etc. are implemented by way of plugins.
Although the core code of Apache APISIX is written in Lua, Apache APISIX
supports multi-language development of plugins, such as Go, Java.
This article will explain in detail how to develop Apache APISIX plugins in
Go. By embracing the Go ecosystem, we are breaking new ground for Apache
APISIX, and we hope that Go will make Apache APISIX even better!
diff --git a/website/blog/2021/09/07/how-to-use-apisix-auth.md
b/website/blog/2021/09/07/how-to-use-apisix-auth.md
index bbe9cc8..f4fc014 100644
--- a/website/blog/2021/09/07/how-to-use-apisix-auth.md
+++ b/website/blog/2021/09/07/how-to-use-apisix-auth.md
@@ -150,7 +150,7 @@ Some judgments are made by request headers, parameters and
other related informa

-By initiating an HTTP request through the HTTP library, we can use a
third-party service to do some authentication and forensics related things and
then parse the returned results. In this way, we can do a lot of things that
can be extended. For example, interfacing to Redis or a database, as long as
it's over TCP or UDP, can be attempted with the Serverless plugin.
+By initiating an HTTP request through the HTTP library, we can use a
third-party service to do some authentication and authentication related things
and then parse the returned results. In this way, we can do a lot of things
that can be extended. For example, interfacing to Redis or a database, as long
as it's over TCP or UDP, can be attempted with the Serverless plugin.
### Upload Configurations
diff --git a/website/blog/2022/01/25/release-apache-apisix-2.12.md
b/website/blog/2022/01/25/release-apache-apisix-2.12.md
index d5ca5ac..e0883d3 100644
--- a/website/blog/2022/01/25/release-apache-apisix-2.12.md
+++ b/website/blog/2022/01/25/release-apache-apisix-2.12.md
@@ -29,18 +29,18 @@ Remember that in the last release, Apache APISIX added
support for Azure Functio
Users can now also combine AWS Lambda and Apache OpenWhisk in Apache APISIX to
expose specific functions on the gateway.
-## New features: More Forensic Plugins
+## New features: More Authentication Plugins
This new release also brings two new plugins that we've been waiting for:
`forward-auth` and `opa`.
- The `forward-auth` plugin is similar to Traefik's plugin of the same name,
which allows sending the information of the current request to an external
service for authentication.
- The `opa` plugin integrates with the well-known Open Policy Agent, which can
perform complex authentication functions via OPA.
-These two plugins will add to the forensic functionality of Apache APISIX,
giving users richer and easier forensic operations.
+These two plugins will add to the authentication functionality of Apache
APISIX, giving users richer and easier authentication operations.
## New features: More Logging Features
-In addition to the forensic plugins mentioned above, this new release will
also bring three new logging plugins: `google-cloud-logging`,
`splunk-hec-logging` and `rocketmq-logger`.
+In addition to the authentication plugins mentioned above, this new release
will also bring three new logging plugins: `google-cloud-logging`,
`splunk-hec-logging` and `rocketmq-logger`.
In the future, Apache APISIX will connect to more and more logging service
providers and open source brokers to make logging easier.