im running a reverse proxy serving serveral Domains on Apache.
Currently I use multidomain cert. Since I meanwhile run many domains for different clients under ONE IP, I wonder if there is already a possibility to have different single certs on the reverse proxy instead of one big one with all domains in it. Problem is that customers visiting sites with the cert also see other domains running on same machine, which is of course not a secret but this is not desired by some customers.
Is it possible to just use multiple different certs for one ip with more than one domain name WITHOUT using multidomain certs?
Just use name based virtualhosts in the apache configuration. Each virtualhost will have its own certificate. The SNI feature of the TLS will take care of the virtualhost/certificate selection even all names map to the same IP address.