URL (domain name)
Overview
The domain address customization is a rather common update of the TurnKey Lender instance, which, however, requires some configuration-level changes. On your side, you need to contact your TurnKey Lender account manager, provide a .pfx version of the SSL certificate for the domain you would like to use, and then, on your side, point that domain to the server IP provided by TurnKey.
Obtaining an SSL Certificate
While the procedure may differ subject to a specific domain, the basic flow is:
1. Generate a Private Key and CSR (Certificate Signing Request).
This can be done using OpenSSL or a similar tool. Here's how you can generate them using OpenSSL:
# Generate a new private key
openssl genrsa -out mydomain.key 2048
# Generate a CSR using the private key
openssl req -new -key mydomain.key -out mydomain.csr
You'll need to fill in additional information like your domain name, organization, city, etc. generating the CSR.
2. Purchase the Certificate
Submit the CSR to a certificate authority (CA) like Let's Encrypt, Comodo, DigiCert, etc. The CA will validate your domain ownership and issue the certificate. Most CAs provide instructions on how to submit your CSR.
3. Download Your Certificate
Once your SSL certificate is issued, you will typically receive it via email, or you can download it from the CA's portal. Usually, you'll receive several files including your domain certificate (mydomain.crt
) and the CA's intermediate certificates.
4. Create a .pfx File
After obtaining your certificate and any necessary intermediate and root certificates, you can combine them with your private key into a .pfx file. Again, you can use OpenSSL to do this:
# Combine your private key and certificates, and the CA's intermediate certificates into a .pfx file
openssl pkcs12 -export -out mydomain.pfx -inkey mydomain.key -in mydomain.crt -certfile CA_Intermediate.crt
You'll be prompted to create a password for the .pfx file, which is required to import the certificate.
Point your domain to the TurnKey Lender IP
The process may strongly depend on your domain provider, however, in the most common case you'll need to update the DNS records for your domain:
1. Access Your Domain's DNS Settings
Log in to the platform where your domain is registered. If you use a third-party DNS service (like Cloudflare, Google DNS, etc.), you'll need to access your DNS settings there.
2. Update DNS Records
To update the DNS record, it is usually enough to:
Find the DNS Management Page: Navigate to the section where you can view and edit DNS records. This is often labeled as "DNS Management," "Name Server Management," or simply "DNS."
Edit the A Record: You will likely see several types of DNS records such as A, CNAME, MX, etc. Locate the A record for your domain. This record might be labeled with your domain name or a prefix like ‘@’, which stands for the root of your domain.
Enter the New IP Address: Replace the existing IP address in the A record with the new IP address provided by the company hosting your server.
3: Save Changes
After entering the new IP address, make sure to save or update the record. This process can vary depending on the DNS provider or registrar.
Other Ways of Implementation
While these are some generalized processes, please feel free to access TurnKey Lender for any assistance needed on the matter.