Documentation

Issue a certificate, then install it on Apache, Nginx, or cPanel.

Quick start

  1. Create an account and fund your wallet (IQD via Wayl or USD).
  2. Open New SSL, enter your domain, choose 90 days or 1 year.
  3. Verify with DNS TXT or HTTP challenge file.
  4. Download CRT, private key, CA bundle — or ZIP all files.
  5. Paste into cPanel SSL/TLS or configure Nginx/Apache.

DNS vs HTTP validation

Both prove domain control to Let’s Encrypt.

DNS TXT

Add _acme-challenge TXT records. Works without a live site. Required for wildcards (*.example.com).

HTTP file

Serve a token file at /.well-known/acme-challenge/ on port 80. Simple when the site is already online.

cPanel install

  1. Certificate (CRT) ← cert.crt
  2. Private Key ← privkey.pem
  3. CA Bundle ← ca-bundle.crt (includes intermediates + ISRG roots)

Apache

SSLCertificateFile      /path/to/cert.crt
SSLCertificateKeyFile   /path/to/privkey.pem
SSLCertificateChainFile /path/to/ca-bundle.crt

Nginx

ssl_certificate     /path/to/fullchain.pem;
ssl_certificate_key /path/to/privkey.pem;

Frequently asked questions

Are certificates trusted by browsers?
Yes. SSLBind issues via Let’s Encrypt, a publicly trusted CA included in major browser and OS root stores. Visitors see the padlock and https:// like any other trusted certificate.
DNS vs HTTP — which should I use?
HTTP places a file under /.well-known/acme-challenge/ when the site is live on port 80. DNS adds _acme-challenge TXT records and works without a running site. Wildcards (*.example.com) require DNS.
Do you support wildcard certificates?
Yes. Enter *.example.com and use DNS TXT validation. The cert covers first-level subdomains; include the apex domain separately if you also need example.com.
What files do I need to install?
You need the Certificate (CRT), Private Key, and CA Bundle (intermediates + ISRG roots for cPanel). Or download the ZIP / fullchain.pem for Nginx.
What if I lost my private key?
Re-download from your SSLBind order if the files are still available. Otherwise reissue a new certificate — the old key cannot be recovered.
Why does the site still say Not Secure?
Usually mixed HTTP content (images/scripts) or missing HTTPS redirect. Confirm CRT, key, and CA Bundle match, then force HTTPS in .htaccess or the server config.

Plans

90 Days: $2.99 / 4,000 IQD · 1 Year: $7.99 / 9,000 IQD (renewals included for 365 days). Leaf certificates from Let’s Encrypt last ~90 days.