Apache2: [warn] RSA server certificate CommonName (CN) does NOT match server name!?
Just a note for those whose has find that warning message in his apache web server: Apache’s ServerName directive IS CASE SENSITIVE.
[warn] RSA server certificate CommonName (CN) `MARZOA.COM’ does NOT match server name!?
I had “ServerName marzoa.com” directive on my configuration file for that virtual host, but that was not working. The last thing that I thought is that it may be case sensitive, because DNS isn’t. But that was the case… So I switched to “ServerName MARZOA.COM” on apache’s config file for this host, and the warning dissapeared.

