Securise using HTTPS
This guide walks you through the configuration to expose REGARDS through HTTPS.
- If you have a
p12
file, use these commands to generatecrt
andkey
files.
openssl pkcs12 -in <your domain>.p12 -nocerts -nodes -out <your domain>.key
openssl pkcs12 -in <your domain>.p12 -clcerts -nokeys -out <your domain>.crt
-
Create the folder
<inventory>/static/ssl
in your inventory then open this folder using your terminal -
Using Ansible Vault - Encrypt file, generates an encrypted version of the
<your domain>.key
file -
Copy the
<your domain>.crt
file without any Ansible Vault encryption (it's not a sensitive information) to the folder<inventory>/static/ssl/
-
Edit your inventory file
inventories/<your inventory>/group_vars/regards_nodes/main.yml
group_docker_mservices:
[...]
front:
protocol: https
host: <your domain>
port: 443
tag: "{{ group_docker_tags.front }}"
ssl:
crt: <your domain>.crt
key: <your domain>.key
That's it ! Deploy using Ansible then connect to REGARDS using https://<your domain>