Can't renew, getting errors with multiple domains

Oh, sorry. I have 2 files for mydomain.tld, and I pasted the http version facepalm.

Here's the https version with "le-ssl.conf". Let's try this again:

/etc/httpd/sites-enabled/mydomain.tld-le-ssl.conf:

<IfModule mod_ssl.c>
<VirtualHost *:443>
    ServerName mydomain.tld
    DocumentRoot /var/www/html
    ErrorLog logs/mydomain.tld-error_log
    CustomLog logs/mydomain.tld-access_log combined
SSLCertificateFile /etc/letsencrypt/live/mydomain.tld/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/mydomain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/mydomain.tld/chain.pem
</VirtualHost>

/etc/letsencrypt/renewal/domain.com-le-ssl.conf:

<IfModule mod_ssl.c>
<VirtualHost *:443>
    ServerName domain.com
    ServerAlias www.domain.com
    DocumentRoot /var/www/html/domain
    ServerAdmin not@available.com
    UseCanonicalName Off
    ErrorLog logs/domain.com-error_log
    CustomLog logs/domain.com-access_log combined
    UserDir disabled
    UserDir enabled drsprite
RewriteEngine on
RewriteCond %{SERVER_NAME} =domain.com [OR]
RewriteCond %{SERVER_NAME} =www.domain.com
# Some rewrite rules in this file were were disabled on your HTTPS site,
# because they have the potential to create redirection loops.
# RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
SSLCertificateFile /etc/letsencrypt/live/domain.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/domain.com/chain.pem
</VirtualHost>

<Directory /var/www/html/domain>
    AllowOverride All
</Directory>

</IfModule>

/etc/letsencrypt/renewal/domain2.net-le-ssl.conf:

<IfModule mod_ssl.c>
<Directory /var/www/html/domain2>
    AllowOverride all
</Directory>

<VirtualHost *:443>
    ServerName domain2.net
    ServerAlias www.domain2.net
    DocumentRoot /var/www/html/domain2
    ServerAdmin not@available.com
    UseCanonicalName Off
    ErrorLog logs/domain2.net-error_log
    CustomLog logs/domain2.net-access_log combined
    UserDir disabled
    UserDir enabled drsprite
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.domain2.net [OR]
RewriteCond %{SERVER_NAME} =domain2.net
# Some rewrite rules in this file were were disabled on your HTTPS site,
# because they have the potential to create redirection loops.
# RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
SSLCertificateFile /etc/letsencrypt/live/domain2.net/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain2.net/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/domain2.net/chain.pem
</VirtualHost>


</IfModule>