Installing and Configuring SSL Certificates#
Sherpa Orchestrator supports HTTPS connections to ensure secure communication. This guide describes ways to obtain SSL certificates for use in the system.
Recommendations for Obtaining Certificates#
Important: Before obtaining certificates, consult your internal network administrator or your company's certification authority. Corporate certificates are usually provided by the IT department and ensure better integration with the existing security infrastructure.
If corporate certificates are not available, consider the following options for obtaining certificates for external domains in the sections below.
Obtaining Corporate Certificates#
If your organization has an internal certification authority (CA), contact your system administrator to obtain certificates. Provide them with the domain for the certificates and receive 2 files: the certificate (.crt) and the private key (.key). After obtaining them, install them as follows:
# Create a directory for certificates
mkdir -p ./backend/config/certs/
# Copy the certificates (rename the files as received)
cp your_certificate.crt ./backend/config/certs/orchestrator.crt
cp your_private.key ./backend/config/certs/orchestrator.key
💡 Comments on Obtaining Corporate Certificates
mkdir -p ./backend/config/certs/ - creates a directory for certificates
-p- creates parent directories as needed
cp your_certificate.crt ./backend/config/certs/orchestrator.crt - copies the certificate cp your_private.key ./backend/config/certs/orchestrator.key - copies the private key
chmod 644 ./backend/config/certs/*.crt - sets read permissions for certificates chmod 600 ./backend/config/certs/*.key - sets permissions for the owner only on keys
Obtaining Trusted Certificates via Let's Encrypt#
To obtain free trusted certificates from Let's Encrypt, use Certbot on a machine with internet access.
Installing Certbot#
# On Ubuntu/Debian
sudo apt update
sudo apt install certbot
# On CentOS/RHEL
sudo yum install certbot
# On macOS (with Homebrew)
brew install certbot
💡 Comments on Installing Certbot
Ubuntu/Debian:
sudo apt update- updates the package listsudo apt install certbot- installs Certbot
CentOS/RHEL:
sudo yum install certbot- installs Certbot via yum
macOS:
brew install certbot- installs Certbot via Homebrew
Obtaining a Certificate for a Domain#
# Obtain a certificate for your domain (replace yourdomain.com with your domain)
sudo certbot certonly --standalone -d yourdomain.com
# Or for a wildcard certificate (requires DNS challenge)
sudo certbot certonly --manual --preferred-challenges=dns -d yourdomain.com -d *.yourdomain.com
💡 Comments on Obtaining a Certificate
sudo certbot certonly --standalone -d yourdomain.com - obtains a certificate for the domain
certonly- obtains only certificates, without configuring the web server--standalone- runs a temporary web server for HTTP-01 challenge-d yourdomain.com- specifies the domain for the certificate
*sudo certbot certonly --manual --preferred-challenges=dns -d yourdomain.com -d .yourdomain.com - obtains a wildcard certificate
--manual- manual mode (requires DNS record)--preferred-challenges=dns- uses DNS-01 challenge-d *.yourdomain.com- wildcard domain
Location of Obtained Certificates#
After successfully obtaining the certificates, they will be located in the directory /etc/letsencrypt/live/yourdomain.com/:
# Check the contents of the directory with certificates
sudo ls -la /etc/letsencrypt/live/yourdomain.com/
# The output should contain:
# cert.pem (certificate)
# chain.pem (certificate chain)
# fullchain.pem (full chain)
# privkey.pem (private key)
💡 Comments on the Location of Certificates
sudo ls -la /etc/letsencrypt/live/yourdomain.com/ - shows the contents of the directory with certificates
/etc/letsencrypt/live/- standard Let's Encrypt directoryyourdomain.com/- subdirectory for the domain
Certificate files:
cert.pem- domain certificatechain.pem- chain of intermediate certificatesfullchain.pem- full certificate with chainprivkey.pem- private key
Transferring Certificates to the Target Machine#
Copy the certificates to the machine where Sherpa Orchestrator will be installed:
# Create a directory for certificates on the target machine
mkdir -p ./backend/config/certs/
# Copy the certificates (replace yourdomain.com with your domain)
sudo scp /etc/letsencrypt/live/yourdomain.com/fullchain.pem user@target-server:./backend/config/certs/orchestrator.crt
sudo scp /etc/letsencrypt/live/yourdomain.com/privkey.pem user@target-server:./backend/config/certs/orchestrator.key
💡 Comments on Transferring Certificates
mkdir -p ./backend/config/certs/ - creates a directory for certificates
sudo scp /etc/letsencrypt/live/yourdomain.com/fullchain.pem user@target-server:./backend/config/certs/orchestrator.crt - copies the certificate
scp- secure copyfullchain.pem- full certificate with chain- Renamed to
orchestrator.crt
sudo scp /etc/letsencrypt/live/yourdomain.com/privkey.pem user@target-server:./backend/config/certs/orchestrator.key - copies the private key
privkey.pem- private key- Renamed to
orchestrator.key
Creating Self-Signed Certificates (for Testing)#
WARNING: Self-signed certificates are not trusted and will trigger security warnings in browsers. Use this method only for testing or in isolated networks!
Creating a Self-Signed Certificate with OpenSSL#
# Create a directory for certificates
mkdir -p ./backend/config/certs/
# Generate a private key
openssl genrsa -out ./backend/config/certs/orchestrator.key 2048
# Create a self-signed certificate
openssl req -new -x509 -key ./backend/config/certs/orchestrator.key -out ./backend/config/certs/orchestrator.crt -days 365 -subj "/C=RU/ST=State/L=City/O=Organization/CN=orchestrator.sherparpa.ru"
💡 Comments on Creating Self-Signed Certificates
mkdir -p ./backend/config/certs/ - creates a directory for certificates
openssl genrsa -out ./backend/config/certs/orchestrator.key 2048 - generates a private key
genrsa- generates RSA key-out file.key- output file2048- key length in bits
openssl req -new -x509 -key keyfile.key -out certfile.crt -days 365 -subj "/C=RU/..." - creates a self-signed certificate
req -new -x509- creates a new self-signed certificate-key keyfile.key- uses the specified private key-out certfile.crt- output certificate file-days 365- validity period (1 year)-subj "/C=RU/ST=State/L=City/O=Organization/CN=domain.com"- subject information
Verifying Created Certificates#
# Check certificate information
openssl x509 -in ./backend/config/certs/orchestrator.crt -text -noout
# Check the key and certificate match
openssl rsa -in ./backend/config/certs/orchestrator.key -check
💡 Comments on Verifying Certificates
openssl x509 -in ./backend/config/certs/orchestrator.crt -text -noout - shows information about the certificate
x509- command for working with X.509 certificates-in file.crt- input certificate file-text- outputs textual information-noout- does not output the encoded certificate
openssl rsa -in ./backend/config/certs/orchestrator.key -check - checks the private key
rsa- command for working with RSA keys-in file.key- input key file-check- checks the validity of the key
Setting Correct Permissions#
After copying or creating certificates, set the correct permissions:
# Set permissions on certificates
chmod 644 ./backend/config/certs/*.crt
chmod 600 ./backend/config/certs/*.key
💡 Comments on Setting Permissions
chmod 644 ./backend/config/certs/*.crt - sets permissions on certificates
644- rw-r--r-- (read for all, write only for owner)*.crt- all certificate files
chmod 600 ./backend/config/certs/*.key - sets permissions on private keys
600- rw------- (read and write only for owner)*.key- all private key files
Permission Requirements:
.crtfiles: 644 (read for all, write for owner).keyfiles: 600 (read and write only for owner)
Security Recommendations#
- Always use trusted certificates for production environments
- Regularly renew certificates before they expire
- Store private keys in a secure location with restricted access
- Monitor certificate expiration dates and set up alerts
- Use strong cipher suites in server configuration
After obtaining and configuring certificates by any of the described methods, return to the main installation guide for Sherpa Orchestrator.