From e5a6a1f250ac9b49db7878397969765588b61b2e Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Mon, 13 Jun 2016 14:27:20 +0200 Subject: [PATCH] Documentation --- README.md | 12 ++++++++++++ tasks/main.yml | 7 ------- 2 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..34b6101 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Preparing SSL Cert + +Create SSL-Cert once upfront in the inventory and use the passphrase similar to `{{ fluentd_cert_passphrase }}`: + +``` +openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650 -subj '/CN={{ fluentd_host }}' +``` + +# Tutorials + +- https://sonnguyen.ws/centralize-docker-logs-with-fluentd-elasticsearch-and-kibana/ +- https://sonnguyen.ws/monitor-nginx-response-time-with-fluentd-kibana-and-elasticsearch/ diff --git a/tasks/main.yml b/tasks/main.yml index b80f3a6..b95e00e 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,10 +1,3 @@ -# Tutorials -# https://sonnguyen.ws/centralize-docker-logs-with-fluentd-elasticsearch-and-kibana/ -# https://sonnguyen.ws/monitor-nginx-response-time-with-fluentd-kibana-and-elasticsearch/ -# -# Create SSL-Cert once upfront in the inventory and use the passührase similar to {{ fluentd_cert_passphrase }}: -# openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650 -subj '/CN={{ fluentd_hostname }}' - --- # file: roles/fluentd/tasks/main.yml -- GitLab