OpenSSL Configuration for Ubuntu 20.04 LAMP& WP Multisites
Solution 1:
Your virtual hosts are listening on port 80, while a HTTPS connection uses port 443. For this, you get served with what is in the default SSL config, since that is the only config for port 443.
Changing your VirtualHost
definitions to <VirtualHost *:443>
will probably solve the issue.