Deploy certs for zigbee2mqtt.ccchh.net using new certbot role
Also add certbot role to deploy.yaml playbook and add accompanying group.
This commit is contained in:
parent
f0c5c2b265
commit
154a7dfa02
|
@ -1,13 +1,12 @@
|
||||||
zigbee2mqtt__version: "1.32.1"
|
zigbee2mqtt__version: "1.32.1"
|
||||||
zigbee2mqtt__network_key: "{{ lookup('community.general.passwordstore', 'noc/vm-secrets/zigbee2mqtt/network_key', create=false, missing='error') }}"
|
zigbee2mqtt__network_key: "{{ lookup('community.general.passwordstore', 'noc/vm-secrets/zigbee2mqtt/network_key', create=false, missing='error') }}"
|
||||||
zigbee2mqtt__initial_config: "{{ lookup('ansible.builtin.template', 'configs/zigbee2mqtt/zigbee2mqtt/configuration.yaml.j2') }}"
|
zigbee2mqtt__initial_config: "{{ lookup('ansible.builtin.template', 'configs/zigbee2mqtt/zigbee2mqtt/configuration.yaml.j2') }}"
|
||||||
cert__acme_account_email: jannes+letsencrypt-ccchh@grzb.de
|
|
||||||
cert__domains:
|
certbot__version_spec: ""
|
||||||
|
certbot__acme_account_email_address: j+letsencrypt-ccchh@jsts.xyz
|
||||||
|
certbot__certificate_domains:
|
||||||
- "zigbee2mqtt.ccchh.net"
|
- "zigbee2mqtt.ccchh.net"
|
||||||
cert__bind_9_host: authoritative-dns
|
|
||||||
cert__bind_9_zone: ccchh.net
|
|
||||||
cert__handlers:
|
|
||||||
- Restart `nginx.service`
|
|
||||||
nginx__version_spec: ""
|
nginx__version_spec: ""
|
||||||
nginx__configurations:
|
nginx__configurations:
|
||||||
- name: zigbee2mqtt
|
- name: zigbee2mqtt
|
||||||
|
|
|
@ -52,10 +52,12 @@ all:
|
||||||
cert_hosts:
|
cert_hosts:
|
||||||
hosts:
|
hosts:
|
||||||
esphome:
|
esphome:
|
||||||
zigbee2mqtt:
|
|
||||||
keycloak:
|
keycloak:
|
||||||
wiki:
|
wiki:
|
||||||
engelsystem:
|
engelsystem:
|
||||||
|
certbot_hosts:
|
||||||
|
hosts:
|
||||||
|
zigbee2mqtt:
|
||||||
ssh_server_config_hosts:
|
ssh_server_config_hosts:
|
||||||
hosts:
|
hosts:
|
||||||
keycloak:
|
keycloak:
|
||||||
|
|
|
@ -57,6 +57,11 @@
|
||||||
roles:
|
roles:
|
||||||
- cert
|
- cert
|
||||||
|
|
||||||
|
- name: Ensure certbot and certificate deployment on certbot_hosts
|
||||||
|
hosts: certbot_hosts
|
||||||
|
roles:
|
||||||
|
- certbot
|
||||||
|
|
||||||
- name: Ensure Docker Compose deployment on docker_compose_hosts
|
- name: Ensure Docker Compose deployment on docker_compose_hosts
|
||||||
hosts: docker_compose_hosts
|
hosts: docker_compose_hosts
|
||||||
roles:
|
roles:
|
||||||
|
|
|
@ -7,6 +7,7 @@ map $host $upstream_acme_challenge_host {
|
||||||
thinkcccore2.ccchh.net 10.31.242.5;
|
thinkcccore2.ccchh.net 10.31.242.5;
|
||||||
thinkcccore3.ccchh.net 10.31.242.6;
|
thinkcccore3.ccchh.net 10.31.242.6;
|
||||||
wiki.ccchh.net 10.31.206.13;
|
wiki.ccchh.net 10.31.206.13;
|
||||||
|
zigbee2mqtt.ccchh.net 10.31.208.25:31820;
|
||||||
default "";
|
default "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,10 @@ server {
|
||||||
|
|
||||||
server_name zigbee2mqtt.ccchh.net;
|
server_name zigbee2mqtt.ccchh.net;
|
||||||
|
|
||||||
ssl_certificate /etc/ansible_certs/certs/zigbee2mqtt.ccchh.net/fullchain.pem;
|
ssl_certificate /etc/letsencrypt/live/zigbee2mqtt.ccchh.net/fullchain.pem;
|
||||||
ssl_certificate_key /etc/ansible_certs/certs/zigbee2mqtt.ccchh.net/privkey.pem;
|
ssl_certificate_key /etc/letsencrypt/live/zigbee2mqtt.ccchh.net/privkey.pem;
|
||||||
# verify chain of trust of OCSP response using Root CA and Intermediate certs
|
# verify chain of trust of OCSP response using Root CA and Intermediate certs
|
||||||
ssl_trusted_certificate /etc/ansible_certs/certs/zigbee2mqtt.ccchh.net/chain.pem;
|
ssl_trusted_certificate /etc/letsencrypt/live/zigbee2mqtt.ccchh.net/chain.pem;
|
||||||
|
|
||||||
add_header Strict-Transport-Security "max-age=63072000" always;
|
add_header Strict-Transport-Security "max-age=63072000" always;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue