ansible-nginx/doc/ssl.md

73 lines
1.7 KiB
Markdown
Raw Normal View History

2016-01-12 18:14:36 +07:00
SSL/TLS Management
==================
You can put all this variables in a separated vault file.
Variables
---------
- `nginx_dh`: DH content
- `nginx_dh_length`: DH key length (default is 2048)
- `nginx_dh_path`: file localation
- `nginx_ssl_dir`: directory where you install your SSL/TLS keys
- `nginx_ssl_pairs`
Cert/Key pairs
--------------
This list have 3 mandatory keys:
2016-03-09 17:20:19 +07:00
- `name`: MUST be unique
2016-01-12 23:26:30 +07:00
2016-01-12 18:14:36 +07:00
- `key`: content of the private key
- `cert`: content of the public key
2016-01-12 23:26:30 +07:00
OR
- `dest_cert`: remote path where certificate is located
- `dest_key`: remote path where key is located
2016-01-12 18:14:36 +07:00
Note: `name` is used to deploy key/cert. With defaults values dans `name` = "foo", key is -> /etc/nginx/ssl/foo/foo.key
2016-01-12 23:26:30 +07:00
Tips
----
2016-11-07 23:22:14 +07:00
- Deploying key/cert is not mandatory with this role. You can manage it in other place ([letsencrypt](https://letsencrypt.org/)? :)). You just need to set `dest_cert` and `dest_key`!
- In `nginx_sites`, `ssl_name` is mandatory. This role will search in `nginx_ssl_pairs` with site `name` (first in list if it's a list).
2016-01-12 23:26:30 +07:00
2016-01-12 18:14:36 +07:00
Diffie-Hellman
--------------
If you do not specify any dh param, this role auto generates it.
Example
-------
2016-03-15 01:27:51 +07:00
```yaml
nginx_sites;
2016-01-12 18:14:36 +07:00
- name: 'test-ssl.local'
proto: ['http', 'https']
template: '_base'
ssl_name: 'mysuperkey'
2016-11-07 23:22:14 +07:00
- name: 'test-ssl2.local'
proto: ['http', 'https']
template: '_base'
2017-12-03 04:22:28 +07:00
- name: 'test-ssl3.local'
proto: ['http', 'https']
template: '_base'
2016-01-12 18:14:36 +07:00
nginx_ssl_pairs:
- name: mysuperkey
key: |
-----BEGIN RSA PRIVATE KEY-----
....(snip)....
-----END RSA PRIVATE KEY-----
cert: |
-----BEGIN CERTIFICATE-----
....(snip)....
-----END CERTIFICATE-----
2016-11-07 23:22:14 +07:00
- name: test-ssl2.local
2017-12-03 04:22:28 +07:00
acme: true
2016-01-12 18:14:36 +07:00
```