README.md in fluent-plugin-secure-forward-0.0.2 vs README.md in fluent-plugin-secure-forward-0.0.3
- old
+ new
@@ -1,23 +1,19 @@
# fluent-plugin-secure-forward
Fluentd input/output plugin to forward fluentd messages over SSL with authentication.
-**THIS PLUGIN IS PoC, and now version is HIGHLY EXPERIMENTAL.**
+**CURRENT STATUS: HIGHLY EXPERIMENTAL**
This plugin makes you to be able to:
* protect your data from others in transferring with SSL
* with certificate signed and registered correctly
* with self-signed certificate (and generate certificate in in\_secure\_forward automatically)
* authenticate by shared\_key check from both of client(out\_secure\_forward) and server(in\_secure\_forward)
* authenticate with username / password pairs
-**DON'T USE THIS PLUGIN OF THIS VERSION (v0.0.x) IN PRODUCTION ENVIRONMENT.**
-
-We need new developer/maintainer of this plugin, who wants to use this plugin in their systems.
-
## Configuration
### SecureForwardInput
Default settings:
@@ -121,10 +117,11 @@
Minimal configurations like this:
<match secret.data.**>
type secure_forward
shared_key secret_string
+ self_hostname client.fqdn.local
<server>
host server.fqdn.local # or IP
# port 24284
</server>
</match>
@@ -134,9 +131,10 @@
If server requires username/password, set `username` and `password` in `<server>` section:
<match secret.data.**>
type secure_forward
shared_key secret_string
+ self_hostname client.fqdn.local
<server>
host server.fqdn.local
username repeatedly
password sushi
</server>