SSL not working - Oracle Linux 9.7

#1
Hello to Comminity !
My environment - Oracle Linux 9.7
I'm testing OpenLiteSpeed and I have a success to set up usual access to port 80 for a test domain.
But many efforts to establish 443 SSL connection still in vain.
Settings for Virtual Host made exactly as instructed at
https://docs.openlitespeed.org/security/ssl/
see screenshots attached

I also recreated SSL certificates using
sudo certbot certonly --webroot -w /usr/local/lsws/joomla.altum.biz/html/ --agree-tos --no-eff-email --staple-ocsp --preferred-challenges http -m server@test.com -d joomla.altum.biz

Many restarts made - no success.
Usual http://joomla.altum.biz - works
SSL https://joomla.altum.biz - not

Thank i advance for any hint to try,
Regards listener_ssl_host.png Mappings.png virtual_ssl_host.png
 
#2
I see the cert's Common Name (CN) is altertag.com, which is why you got the issue.
Have you restarted the web server?

Could you also try the following command with fewer parameters and share the whole output here?
Code:
certbot certonly --webroot -w /usr/local/lsws/joomla.altum.biz/html/ -d joomla.altum.biz
 
#3
Hello, I made recreation of certificate as below and restarted lsws server.
No success, result is the same.

As it very test installation - I can give you even an access to OpenLiteSpeed Web Admin Area (using private message, I suppose ?)


certbot certonly --webroot -w /usr/local/lsws/joomla.altum.biz/html/ -d joomla.altum.biz
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Certificate not yet due for renewal

You have an existing certificate that has exactly the same domains or certificate name you requested and isn't close to expiry.
(ref: /etc/letsencrypt/renewal/joomla.altum.biz.conf)

What would you like to do?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: Keep the existing certificate for now
2: Renew & replace the certificate (may be subject to CA rate limits)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2
Renewing an existing certificate for joomla.altum.biz

Successfully received certificate.
Certificate is saved at: /etc/letsencrypt/live/joomla.altum.biz/fullchain.pem
Key is saved at: /etc/letsencrypt/live/joomla.altum.biz/privkey.pem
This certificate expires on 2026-04-20.
These files will be updated when the certificate renews.
Certbot has set up a scheduled task to automatically renew this certificate in the background.
 
Top