In AxxonData, you can apply a custom certificate and a custom domain name.
To generate and apply a custom certificate and a custom domain name, do the following:
- Contact the AxxonSoft technical support to get the gen-srt.ch generation script and the v3.ext file.
Place the v3.ext file and the gen-srt.ch generation script in the same directory.
- Open the gen-srt.ch generation script in a text editor.
In line 4 in the DOMAIN parameter, change the default domain name to a custom domain name. For example, DOMAIN=customdomain.test.
- Save the changes.
- Start the generation of the gen-srt.ch script using the command:As a result, you get two files: rootCA.pem and <Domain name>.pem.
sudo ./gen-crt.sh
- Install Docker and AxxonData (see AxxonData in Linux OS).
- Create the ssl folder in the AxxonData directory.
- Rename the <Domain name>.pem file to vmscloud.local.pem and move it to the ssl folder.
- Open the local.ac.docker-stack.yml file in a text editor.
- In the nginx→volumes section, add a line:
./ssl:/etc/nginx/ssl
- Start AxxonData.
sudo ./run.sh
- Check the availability of AxxonData and its services:In the REPLICAS column, all values must be 1/1.
sudo docker service ls
- Install the root certificate. The certificate must be in PEM format with a .crt extension.For Firefox, you must add the rootCA certificate to the Certification Authority yourself.
sudo mkdir /usr/share/ca-certificates/extra sudo cp rootCA.pem /usr/share/ca-certificates/extra/rootCA.crt sudo dpkg-reconfigure ca-certificates
- Add a custom domain to the /etc/hosts file:
127.0.0.1 <Domain name>
- Check if the certificate is installed in the system using the command:Example of a response:
curl -I https://<Domain name>
If the first line in the response is a HTTP/2 200 status, the certificate is installed in the system and all system utilities will use it.HTTP/2 200 server: nginx/1.20.0 date: Wed, 10 May 2023 08:45:23 GMT content-type: text/html content-length: 301 last-modified: Fri, 14 Apr 2023 04:16:58 GMT etag: "6438d3ba-12d" cache-control: no-cache accept-ranges: bytes
- Create a file with a .sh extension (for example, install_cert.sh).
- Add the created file with a .sh extension to the folder with the rootCA.pem file:
#!/bin/bash certfile="rootCA.pem" certname="My Root CA1" for certDB in $(find ~/ -name "cert8.db") do certdir=$(dirname ${certDB}); certutil -A -n "${certname}" -t "TCu,Cu,Tu" -i ${certfile} -d dbm:${certdir} done for certDB in $(find ~/ -name "cert9.db") do certdir=$(dirname ${certDB}); certutil -A -n "${certname}" -t "TCu,Cu,Tu" -i ${certfile} -d sql:${certdir} done
- Give execution rights to the file:
sudo chmod u+x install_cert.sh
- Run the file:
sudo ./install_cert.sh
Open a browser and check the secure connection by typing https://<Domain name> in the search bar. As a result, the AxxonData login window opens in a browser using a custom domain name.
Generation of a custom certificate and a custom domain name is complete.
Overview
Content Tools