Replace nginx rebuild with nginx_conf

This commit is contained in:
Manuel Gutierrez
2020-02-05 18:02:25 +01:00
parent 3a2568879a
commit 2e08f91f62
6 changed files with 53 additions and 96 deletions
+23
View File
@@ -0,0 +1,23 @@
### Enable SSL Traffic
Our Nginx config has SSL enabled by default, but it does require you to provide your certificate first, copy here your certificate files as `kibana-access.pem` and `kibana-access.key`.
The final tree should be like this:
```
nginx_conf/
├── kibana.htpasswd
├── kibana-web.conf
└── ssl
├── kibana-access.key
└── kibana-access.pem
```
#### Using a Self Signed Certificate
In case you want to use a self-signed certificate we provided a script to generate one. You may create your own with more relevant information.
Execute `bash generate-self-signed-cert.sh` on this same directory and the right files will be generated. You must have installed `openssl` locally.