Letsencrypt is generating 2 certificates: 1 for the domain and 1 for the default vhost

The server is:
Provider: DigitalOcean
OS: Ubuntu 16.04.5
Apache version: Apache/2.4.18
Certbot: 0.26.1-1+ubuntu16.04.1+certbot+2

The error I’m getting is:
Error code: SSL_ERROR_BAD_CERT_DOMAIN

So, when I generate a new cert, everything works fine during installation, but when I analyze the cert, it shows that it has 2 or 3 certificates, 1 for the valid domain and 1 for the “default” domain of apache (first in alphabetical order).

It’s also installing a cert to aibestudio.com or abrecuentas.com.py

I ran this command: certbot --apache -d unidospodemosmas.com.py

I can login to a root shell on my machine: yes

My apache2.conf looks like this:

#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5


# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

ServerName random.com.py
ServerSignature Off
ServerTokens Prod

HostnameLookups Off

ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf

# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
	Options FollowSymLinks
	AllowOverride None
	Require all denied
</Directory>

<Directory /usr/share>
	AllowOverride None
	Require all granted
</Directory>

<Directory /var/www/>
	Options Indexes FollowSymLinks
#	AllowOverride None
	AllowOverride All
	Require all granted
</Directory>

#<Directory /srv/>
#	Options Indexes FollowSymLinks
#	AllowOverride None
#	Require all granted
#</Directory>

# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
	Require all denied
</FilesMatch>

# agregado por rodolfo
<IfModule mpm_prefork_module>
    StartServers          3
    MinSpareServers       10
    MaxSpareServers       50
    MaxClients            200
    MaxRequestsPerChild   5000
</IfModule>
<IfModule mpm_worker_module>
    StartServers          1
    MinSpareThreads       10
    MaxSpareThreads       50
    ThreadLimit           75
    ThreadsPerChild       40
    MaxClients            200
    MaxRequestsPerChild   100
</IfModule>
# fin agregado por rodolfo

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

# Agregado por Mark - 10/10/2018
<VirtualHost *:443>
    # This first-listed virtual host is also the default for *:443
    DocumentRoot "/var/www/prox.random.com.py/public_html"
</VirtualHost>

My ports.conf looks like this:

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf

Listen 80

#Listen 1337
#Listen 3000
#Listen 8080

<IfModule ssl_module>
	Listen 443
</IfModule>

<IfModule mod_gnutls.c>
	Listen 443
</IfModule>

unidospodemosmas.com.py.conf

<VirtualHost *:80>

	ServerAdmin xxxx@xxxx.xxx
	ServerName unidospodemosmas.com.py
	DocumentRoot /var/www/unidospodemosmas.com.py/public_html
	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

RewriteEngine on
RewriteCond %{SERVER_NAME} =unidospodemosmas.com.py
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

unidospodemosmas.com.py-le-ssl.conf

<IfModule mod_ssl.c>
<VirtualHost *:443>

	ServerAdmin xxxxx@xxxx.xxx
	ServerName unidospodemosmas.com.py
	DocumentRoot /var/www/unidospodemosmas.com.py/public_html
	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/unidospodemosmas.com.py/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/unidospodemosmas.com.py/privkey.pem
</VirtualHost>
</IfModule>

My options-ssl-apache.conf looks like this

# This file contains important security parameters. If you modify this file
# manually, Certbot will be unable to automatically provide future security
# updates. Instead, Certbot will print and log an error message with a path to
# the up-to-date file that you will need to refer to when manually updating
# this file.

SSLEngine on

# Intermediate configuration, tweak to your needs
SSLProtocol             all -SSLv2 -SSLv3
SSLCipherSuite          ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS
SSLHonorCipherOrder     on
SSLCompression          off

SSLOptions +StrictRequire

# Add vhost name to log entries:
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhost_combined
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common

#CustomLog /var/log/apache2/access.log vhost_combined
#LogLevel warn
#ErrorLog /var/log/apache2/error.log

# Always ensure Cookies have "Secure" set (JAH 2012/1)
#Header edit Set-Cookie (?i)^(.*)(;\s*secure)??((\s*;)?(.*)) "$1; Secure$3$4"

Please show:
certbot certificates
ls -l /etc/apache2/sites-enabled/*.conf
grep -Eri 'servername|alias|virtual|443' /etc/apache2/sites-enabled/*.conf

Output of certbot certificates is:

Saving debug log to /var/log/letsencrypt/letsencrypt.log
Revocation status for /etc/letsencrypt/live/elmangonegro.com/cert.pem is unknown
Revocation status for /etc/letsencrypt/live/otisa.com/cert.pem is unknown
Revocation status for /etc/letsencrypt/live/cervezacorona.com.py/cert.pem is unknown
Revocation status for /etc/letsencrypt/live/api.randomsounds.co/cert.pem is unknown

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Found the following certs:
  Certificate Name: www.random.com.py
    Domains: www.random.com.py
    Expiry Date: 2019-01-07 18:53:37+00:00 (VALID: 77 days)
    Certificate Path: /etc/letsencrypt/live/www.random.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.random.com.py/privkey.pem
  Certificate Name: spintheblackmango.com
    Domains: spintheblackmango.com www.spintheblackmango.com
    Expiry Date: 2018-12-10 08:30:24+00:00 (VALID: 48 days)
    Certificate Path: /etc/letsencrypt/live/spintheblackmango.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/spintheblackmango.com/privkey.pem
  Certificate Name: zoi.la
    Domains: zoi.la www.zoi.la
    Expiry Date: 2018-11-18 15:18:37+00:00 (VALID: 26 days)
    Certificate Path: /etc/letsencrypt/live/zoi.la/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/zoi.la/privkey.pem
  Certificate Name: consorcioaviation.com
    Domains: consorcioaviation.com
    Expiry Date: 2019-01-03 18:59:56+00:00 (VALID: 73 days)
    Certificate Path: /etc/letsencrypt/live/consorcioaviation.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/consorcioaviation.com/privkey.pem
  Certificate Name: www.cespedpar.com
    Domains: www.cespedpar.com cespedpar.com
    Expiry Date: 2018-12-02 04:30:15+00:00 (VALID: 40 days)
    Certificate Path: /etc/letsencrypt/live/www.cespedpar.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.cespedpar.com/privkey.pem
  Certificate Name: mandiorama.com
    Domains: mandiorama.com www.mandiorama.com
    Expiry Date: 2018-12-03 06:18:58+00:00 (VALID: 41 days)
    Certificate Path: /etc/letsencrypt/live/mandiorama.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/mandiorama.com/privkey.pem
  Certificate Name: memium.me
    Domains: memium.me
    Expiry Date: 2018-11-22 03:32:14+00:00 (VALID: 30 days)
    Certificate Path: /etc/letsencrypt/live/memium.me/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/memium.me/privkey.pem
  Certificate Name: www.randomsounds.com.py
    Domains: www.randomsounds.com.py
    Expiry Date: 2018-12-25 14:18:03+00:00 (VALID: 63 days)
    Certificate Path: /etc/letsencrypt/live/www.randomsounds.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.randomsounds.com.py/privkey.pem
  Certificate Name: www.abrecuentas.com.py
    Domains: www.abrecuentas.com.py
    Expiry Date: 2019-01-16 20:28:16+00:00 (VALID: 86 days)
    Certificate Path: /etc/letsencrypt/live/www.abrecuentas.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.abrecuentas.com.py/privkey.pem
  Certificate Name: elmangonegro.com
    Domains: elmangonegro.com www.elmangonegro.com
    Expiry Date: 2018-10-11 15:56:50+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/elmangonegro.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/elmangonegro.com/privkey.pem
  Certificate Name: otisa.com
    Domains: otisa.com www.otisa.com
    Expiry Date: 2018-10-15 03:18:40+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/otisa.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/otisa.com/privkey.pem
  Certificate Name: cervezacorona.com.py
    Domains: cervezacorona.com.py
    Expiry Date: 2018-09-04 19:06:42+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/cervezacorona.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/cervezacorona.com.py/privkey.pem
  Certificate Name: www.diexcar.com.py
    Domains: www.diexcar.com.py
    Expiry Date: 2018-12-11 19:03:08+00:00 (VALID: 50 days)
    Certificate Path: /etc/letsencrypt/live/www.diexcar.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.diexcar.com.py/privkey.pem
  Certificate Name: www.consorcioaviation.com
    Domains: www.consorcioaviation.com
    Expiry Date: 2019-01-03 19:22:02+00:00 (VALID: 73 days)
    Certificate Path: /etc/letsencrypt/live/www.consorcioaviation.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.consorcioaviation.com/privkey.pem
  Certificate Name: revolberfx.com
    Domains: revolberfx.com www.revolberfx.com
    Expiry Date: 2018-12-26 04:26:41+00:00 (VALID: 64 days)
    Certificate Path: /etc/letsencrypt/live/revolberfx.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/revolberfx.com/privkey.pem
  Certificate Name: soda.cool
    Domains: soda.cool www.soda.cool
    Expiry Date: 2018-11-28 03:39:36+00:00 (VALID: 36 days)
    Certificate Path: /etc/letsencrypt/live/soda.cool/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/soda.cool/privkey.pem
  Certificate Name: sionelectrodomesticos.com.py
    Domains: sionelectrodomesticos.com.py
    Expiry Date: 2019-01-18 05:03:51+00:00 (VALID: 87 days)
    Certificate Path: /etc/letsencrypt/live/sionelectrodomesticos.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/sionelectrodomesticos.com.py/privkey.pem
  Certificate Name: fiab2018.com
    Domains: fiab2018.com www.fiab2018.com
    Expiry Date: 2018-11-28 15:25:25+00:00 (VALID: 36 days)
    Certificate Path: /etc/letsencrypt/live/fiab2018.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/fiab2018.com/privkey.pem
  Certificate Name: budnburgers.com.py
    Domains: budnburgers.com.py www.budnburgers.com.py
    Expiry Date: 2018-12-16 04:30:35+00:00 (VALID: 54 days)
    Certificate Path: /etc/letsencrypt/live/budnburgers.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/budnburgers.com.py/privkey.pem
  Certificate Name: lienzo.co
    Domains: lienzo.co www.lienzo.co
    Expiry Date: 2019-01-20 04:30:44+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/lienzo.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/lienzo.co/privkey.pem
  Certificate Name: dev.randomedia.co
    Domains: dev.randomedia.co
    Expiry Date: 2019-01-05 02:39:35+00:00 (VALID: 74 days)
    Certificate Path: /etc/letsencrypt/live/dev.randomedia.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/dev.randomedia.co/privkey.pem
  Certificate Name: aibestudio.com
    Domains: aibestudio.com
    Expiry Date: 2018-11-29 15:10:42+00:00 (VALID: 37 days)
    Certificate Path: /etc/letsencrypt/live/aibestudio.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/aibestudio.com/privkey.pem
  Certificate Name: www.randomsounds.co
    Domains: www.randomsounds.co
    Expiry Date: 2018-12-20 04:19:48+00:00 (VALID: 58 days)
    Certificate Path: /etc/letsencrypt/live/www.randomsounds.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.randomsounds.co/privkey.pem
  Certificate Name: consorciobox.com-0001
    Domains: consorciobox.com
    Expiry Date: 2019-01-17 16:44:18+00:00 (VALID: 86 days)
    Certificate Path: /etc/letsencrypt/live/consorciobox.com-0001/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/consorciobox.com-0001/privkey.pem
  Certificate Name: random.com.py
    Domains: random.com.py
    Expiry Date: 2019-01-08 15:52:11+00:00 (VALID: 77 days)
    Certificate Path: /etc/letsencrypt/live/random.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/random.com.py/privkey.pem
  Certificate Name: www.consorciobox.com
    Domains: www.consorciobox.com
    Expiry Date: 2019-01-18 05:04:19+00:00 (VALID: 87 days)
    Certificate Path: /etc/letsencrypt/live/www.consorciobox.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.consorciobox.com/privkey.pem
  Certificate Name: zoila.com.py
    Domains: zoila.com.py www.zoila.com.py
    Expiry Date: 2018-11-28 15:36:38+00:00 (VALID: 36 days)
    Certificate Path: /etc/letsencrypt/live/zoila.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/zoila.com.py/privkey.pem
  Certificate Name: diexcar.com.py
    Domains: diexcar.com.py
    Expiry Date: 2018-12-11 19:02:38+00:00 (VALID: 50 days)
    Certificate Path: /etc/letsencrypt/live/diexcar.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/diexcar.com.py/privkey.pem
  Certificate Name: consorciobox.com
    Domains: consorciobox.com www.consorciobox.com
    Expiry Date: 2018-11-29 03:28:30+00:00 (VALID: 37 days)
    Certificate Path: /etc/letsencrypt/live/consorciobox.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/consorciobox.com/privkey.pem
  Certificate Name: clubolimpia.com.py
    Domains: www.clubolimpia.com.py clubolimpia.com.py
    Expiry Date: 2018-11-28 15:24:22+00:00 (VALID: 36 days)
    Certificate Path: /etc/letsencrypt/live/clubolimpia.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/clubolimpia.com.py/privkey.pem
  Certificate Name: cardonah.com
    Domains: cardonah.com
    Expiry Date: 2019-01-08 19:46:06+00:00 (VALID: 78 days)
    Certificate Path: /etc/letsencrypt/live/cardonah.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/cardonah.com/privkey.pem
  Certificate Name: www.markmeyer.me
    Domains: www.markmeyer.me
    Expiry Date: 2018-12-23 22:55:34+00:00 (VALID: 62 days)
    Certificate Path: /etc/letsencrypt/live/www.markmeyer.me/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.markmeyer.me/privkey.pem
  Certificate Name: randomedia.co
    Domains: randomedia.co
    Expiry Date: 2019-01-03 02:47:23+00:00 (VALID: 72 days)
    Certificate Path: /etc/letsencrypt/live/randomedia.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/randomedia.co/privkey.pem
  Certificate Name: www.fiab2018.com
    Domains: www.fiab2018.com
    Expiry Date: 2019-01-11 15:45:38+00:00 (VALID: 80 days)
    Certificate Path: /etc/letsencrypt/live/www.fiab2018.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.fiab2018.com/privkey.pem
  Certificate Name: canchachica.com.py
    Domains: canchachica.com.py www.canchachica.com.py
    Expiry Date: 2018-11-29 15:10:52+00:00 (VALID: 37 days)
    Certificate Path: /etc/letsencrypt/live/canchachica.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/canchachica.com.py/privkey.pem
  Certificate Name: www.gramo.co
    Domains: www.gramo.co gramo.co
    Expiry Date: 2018-10-22 03:31:36+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/www.gramo.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.gramo.co/privkey.pem
  Certificate Name: randomsounds.co-0001
    Domains: randomsounds.co
    Expiry Date: 2018-11-29 03:28:48+00:00 (VALID: 37 days)
    Certificate Path: /etc/letsencrypt/live/randomsounds.co-0001/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/randomsounds.co-0001/privkey.pem
  Certificate Name: www.paycongress.com
    Domains: www.paycongress.com
    Expiry Date: 2018-12-10 00:29:39+00:00 (VALID: 48 days)
    Certificate Path: /etc/letsencrypt/live/www.paycongress.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.paycongress.com/privkey.pem
  Certificate Name: ciditpy.org
    Domains: ciditpy.org www.ciditpy.org
    Expiry Date: 2018-11-30 03:26:08+00:00 (VALID: 38 days)
    Certificate Path: /etc/letsencrypt/live/ciditpy.org/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/ciditpy.org/privkey.pem
  Certificate Name: www.innobra.com
    Domains: www.innobra.com innobra.com
    Expiry Date: 2019-01-01 19:46:42+00:00 (VALID: 71 days)
    Certificate Path: /etc/letsencrypt/live/www.innobra.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.innobra.com/privkey.pem
  Certificate Name: canchachica.com
    Domains: canchachica.com www.canchachica.com
    Expiry Date: 2018-11-30 15:56:08+00:00 (VALID: 38 days)
    Certificate Path: /etc/letsencrypt/live/canchachica.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/canchachica.com/privkey.pem
  Certificate Name: www.paraquaria.org.py
    Domains: www.paraquaria.org.py
    Expiry Date: 2018-12-10 20:58:40+00:00 (VALID: 49 days)
    Certificate Path: /etc/letsencrypt/live/www.paraquaria.org.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.paraquaria.org.py/privkey.pem
  Certificate Name: hyline.com.py
    Domains: hyline.com.py www.hyline.com.py
    Expiry Date: 2018-12-16 08:01:47+00:00 (VALID: 54 days)
    Certificate Path: /etc/letsencrypt/live/hyline.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/hyline.com.py/privkey.pem
  Certificate Name: punkdelosperros.com
    Domains: punkdelosperros.com www.punkdelosperros.com
    Expiry Date: 2018-12-22 12:44:33+00:00 (VALID: 60 days)
    Certificate Path: /etc/letsencrypt/live/punkdelosperros.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/punkdelosperros.com/privkey.pem
  Certificate Name: fiab2018.com-0001
    Domains: fiab2018.com
    Expiry Date: 2019-01-06 04:30:50+00:00 (VALID: 75 days)
    Certificate Path: /etc/letsencrypt/live/fiab2018.com-0001/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/fiab2018.com-0001/privkey.pem
  Certificate Name: unidospodemosmas.com.py
    Domains: unidospodemosmas.com.py
    Expiry Date: 2019-01-20 15:29:24+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/unidospodemosmas.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/unidospodemosmas.com.py/privkey.pem
  Certificate Name: paraquaria.org.py
    Domains: paraquaria.org.py
    Expiry Date: 2018-12-10 20:58:14+00:00 (VALID: 49 days)
    Certificate Path: /etc/letsencrypt/live/paraquaria.org.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/paraquaria.org.py/privkey.pem
  Certificate Name: queenofb.com
    Domains: queenofb.com www.queenofb.com
    Expiry Date: 2019-01-05 23:12:26+00:00 (VALID: 75 days)
    Certificate Path: /etc/letsencrypt/live/queenofb.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/queenofb.com/privkey.pem
  Certificate Name: www.aibestudio.com
    Domains: www.aibestudio.com
    Expiry Date: 2019-01-20 14:16:52+00:00 (VALID: 89 days)
    Certificate Path: /etc/letsencrypt/live/www.aibestudio.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.aibestudio.com/privkey.pem
  Certificate Name: gramofiis.org
    Domains: gramofiis.org www.gramofiis.org
    Expiry Date: 2018-11-02 03:31:32+00:00 (VALID: 10 days)
    Certificate Path: /etc/letsencrypt/live/gramofiis.org/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/gramofiis.org/privkey.pem
  Certificate Name: paycongress.com
    Domains: paycongress.com
    Expiry Date: 2018-12-10 00:30:00+00:00 (VALID: 48 days)
    Certificate Path: /etc/letsencrypt/live/paycongress.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/paycongress.com/privkey.pem
  Certificate Name: katanalabs.co
    Domains: katanalabs.co www.katanalabs.co
    Expiry Date: 2018-12-01 03:49:07+00:00 (VALID: 39 days)
    Certificate Path: /etc/letsencrypt/live/katanalabs.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/katanalabs.co/privkey.pem
  Certificate Name: socialred.com.py
    Domains: socialred.com.py
    Expiry Date: 2018-11-30 15:56:26+00:00 (VALID: 38 days)
    Certificate Path: /etc/letsencrypt/live/socialred.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/socialred.com.py/privkey.pem
  Certificate Name: abrecuentas.com.py
    Domains: abrecuentas.com.py
    Expiry Date: 2019-01-16 20:27:48+00:00 (VALID: 86 days)
    Certificate Path: /etc/letsencrypt/live/abrecuentas.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/abrecuentas.com.py/privkey.pem
  Certificate Name: viadedo.com
    Domains: viadedo.com www.viadedo.com
    Expiry Date: 2018-12-02 04:30:42+00:00 (VALID: 40 days)
    Certificate Path: /etc/letsencrypt/live/viadedo.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/viadedo.com/privkey.pem
  Certificate Name: chocho.com.py
    Domains: chocho.com.py www.chocho.com.py
    Expiry Date: 2018-12-01 15:25:41+00:00 (VALID: 39 days)
    Certificate Path: /etc/letsencrypt/live/chocho.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/chocho.com.py/privkey.pem
  Certificate Name: randomsounds.com.py-0001
    Domains: randomsounds.com.py
    Expiry Date: 2018-11-29 03:29:15+00:00 (VALID: 37 days)
    Certificate Path: /etc/letsencrypt/live/randomsounds.com.py-0001/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/randomsounds.com.py-0001/privkey.pem
  Certificate Name: api.randomsounds.co
    Domains: api.randomsounds.co randomsounds.co randomsounds.com.py www.randomsounds.co www.randomsounds.com.py
    Expiry Date: 2018-08-01 15:48:01+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/api.randomsounds.co/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/api.randomsounds.co/privkey.pem
  Certificate Name: markmeyer.me
    Domains: markmeyer.me
    Expiry Date: 2018-11-22 03:33:25+00:00 (VALID: 30 days)
    Certificate Path: /etc/letsencrypt/live/markmeyer.me/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/markmeyer.me/privkey.pem
  Certificate Name: www.sionelectrodomesticos.com.py
    Domains: www.sionelectrodomesticos.com.py
    Expiry Date: 2019-01-16 12:09:25+00:00 (VALID: 85 days)
    Certificate Path: /etc/letsencrypt/live/www.sionelectrodomesticos.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/www.sionelectrodomesticos.com.py/privkey.pem
  Certificate Name: picante.com.py
    Domains: picante.com.py www.picante.com.py
    Expiry Date: 2019-01-13 04:31:23+00:00 (VALID: 82 days)
    Certificate Path: /etc/letsencrypt/live/picante.com.py/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/picante.com.py/privkey.pem
  Certificate Name: paiklub.com
    Domains: paiklub.com www.paiklub.com
    Expiry Date: 2018-10-16 15:59:17+00:00 (INVALID: EXPIRED)
    Certificate Path: /etc/letsencrypt/live/paiklub.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/paiklub.com/privkey.pem
  Certificate Name: atardecerenparaguay.com
    Domains: atardecerenparaguay.com www.atardecerenparaguay.com
    Expiry Date: 2018-12-01 22:17:23+00:00 (VALID: 40 days)
    Certificate Path: /etc/letsencrypt/live/atardecerenparaguay.com/fullchain.pem
    Private Key Path: /etc/letsencrypt/live/atardecerenparaguay.com/privkey.pem
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Can you show this in a picture?

output of ls -l /etc/apache2/sites-enabled/ is:

total 64
lrwxrwxrwx 1 root root 29 Oct  9 15:52 00000.conf -> ../sites-available/00000.conf
lrwxrwxrwx 1 root root 38 Jun  6 14:43 162.243.215.43.conf -> ../sites-available/162.243.215.43.conf
lrwxrwxrwx 1 root root 33 Aug 23  2017 aadip.org.conf -> ../sites-available/aadip.org.conf
lrwxrwxrwx 1 root root 42 Oct 18 17:26 abrecuentas.com.py.conf -> ../sites-available/abrecuentas.com.py.conf
lrwxrwxrwx 1 root root 59 Oct 18 17:27 abrecuentas.com.py-le-ssl.conf -> /etc/apache2/sites-available/abrecuentas.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 38 Oct 22 11:15 aibestudio.com.conf -> ../sites-available/aibestudio.com.conf
lrwxrwxrwx 1 root root 45 Oct 22 11:15 aibestudio.com-le-ssl.conf -> ../sites-available/aibestudio.com-le-ssl.conf
lrwxrwxrwx 1 root root 39 Oct 19  2016 alephsrl.com.py.conf -> ../sites-available/alephsrl.com.py.conf
lrwxrwxrwx 1 root root 47 Apr 11  2018 atardecerenparaguay.com.conf -> ../sites-available/atardecerenparaguay.com.conf
lrwxrwxrwx 1 root root 64 Apr 11  2018 atardecerenparaguay.com-le-ssl.conf -> /etc/apache2/sites-available/atardecerenparaguay.com-le-ssl.conf
lrwxrwxrwx 1 root root 42 Nov 20  2017 budnburgers.com.py.conf -> ../sites-available/budnburgers.com.py.conf
lrwxrwxrwx 1 root root 59 Nov 20  2017 budnburgers.com.py-le-ssl.conf -> /etc/apache2/sites-available/budnburgers.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 39 Feb 13  2018 canchachica.com.conf -> ../sites-available/canchachica.com.conf
lrwxrwxrwx 1 root root 56 Feb 13  2018 canchachica.com-le-ssl.conf -> /etc/apache2/sites-available/canchachica.com-le-ssl.conf
lrwxrwxrwx 1 root root 42 May  7 11:25 canchachica.com.py.conf -> ../sites-available/canchachica.com.py.conf
lrwxrwxrwx 1 root root 59 May  7 11:30 canchachica.com.py-le-ssl.conf -> /etc/apache2/sites-available/canchachica.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 36 Oct 10 13:35 cardonah.com.conf -> ../sites-available/cardonah.com.conf
lrwxrwxrwx 1 root root 53 Oct 10 16:46 cardonah.com-le-ssl.conf -> /etc/apache2/sites-available/cardonah.com-le-ssl.conf
lrwxrwxrwx 1 root root 44 Jan 24  2018 cervezacorona.com.py.conf -> ../sites-available/cervezacorona.com.py.conf
lrwxrwxrwx 1 root root 61 Jun  6 16:06 cervezacorona.com.py-le-ssl.conf -> /etc/apache2/sites-available/cervezacorona.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 37 Oct 31  2017 cespedpar.com.conf -> ../sites-available/cespedpar.com.conf
lrwxrwxrwx 1 root root 54 Nov  6  2017 cespedpar.com-le-ssl.conf -> /etc/apache2/sites-available/cespedpar.com-le-ssl.conf
lrwxrwxrwx 1 root root 37 Jan  5  2018 chocho.com.py.conf -> ../sites-available/chocho.com.py.conf
lrwxrwxrwx 1 root root 54 Feb 14  2018 chocho.com.py-le-ssl.conf -> /etc/apache2/sites-available/chocho.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 35 Apr 28  2016 ciditpy.org.conf -> ../sites-available/ciditpy.org.conf
lrwxrwxrwx 1 root root 52 Feb 14  2018 ciditpy.org-le-ssl.conf -> /etc/apache2/sites-available/ciditpy.org-le-ssl.conf
lrwxrwxrwx 1 root root 42 Jan 10  2018 clubolimpia.com.py.conf -> ../sites-available/clubolimpia.com.py.conf
lrwxrwxrwx 1 root root 59 Feb  1  2018 clubolimpia.com.py-le-ssl.conf -> /etc/apache2/sites-available/clubolimpia.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 45 Oct  5 16:16 consorcioaviation.com.conf -> ../sites-available/consorcioaviation.com.conf
lrwxrwxrwx 1 root root 62 Oct  5 15:29 consorcioaviation.com-le-ssl.conf -> /etc/apache2/sites-available/consorcioaviation.com-le-ssl.conf
lrwxrwxrwx 1 root root 40 May 18 16:28 consorciobox.com.conf -> ../sites-available/consorciobox.com.conf
lrwxrwxrwx 1 root root 57 Aug 20 11:21 consorciobox.com-le-ssl.conf -> /etc/apache2/sites-available/consorciobox.com-le-ssl.conf
lrwxrwxrwx 1 root root 41 Jun  6 12:51 dev.randomedia.co.conf -> ../sites-available/dev.randomedia.co.conf
lrwxrwxrwx 1 root root 58 Jun  6 12:51 dev.randomedia.co-le-ssl.conf -> /etc/apache2/sites-available/dev.randomedia.co-le-ssl.conf
lrwxrwxrwx 1 root root 38 Sep 11 17:01 diexcar.com.py.conf -> ../sites-available/diexcar.com.py.conf
lrwxrwxrwx 1 root root 55 Sep 12 16:02 diexcar.com.py-le-ssl.conf -> /etc/apache2/sites-available/diexcar.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 40 Mar 10  2018 elmangonegro.com.conf -> ../sites-available/elmangonegro.com.conf
lrwxrwxrwx 1 root root 57 Mar 10  2018 elmangonegro.com-le-ssl.conf -> /etc/apache2/sites-available/elmangonegro.com-le-ssl.conf
lrwxrwxrwx 1 root root 47 Mar  7  2018 estudiantesalteatro.com.conf -> ../sites-available/estudiantesalteatro.com.conf
lrwxrwxrwx 1 root root 36 Jun  7 14:13 fiab2018.com.conf -> ../sites-available/fiab2018.com.conf
lrwxrwxrwx 1 root root 53 Jun  7 14:16 fiab2018.com-le-ssl.conf -> /etc/apache2/sites-available/fiab2018.com-le-ssl.conf
lrwxrwxrwx 1 root root 37 Nov 19  2017 hyline.com.py.conf -> ../sites-available/hyline.com.py.conf
lrwxrwxrwx 1 root root 54 Nov 20  2017 hyline.com.py-le-ssl.conf -> /etc/apache2/sites-available/hyline.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 35 Nov 19  2017 innobra.com.conf -> ../sites-available/innobra.com.conf
lrwxrwxrwx 1 root root 52 Dec  4  2017 innobra.com-le-ssl.conf -> /etc/apache2/sites-available/innobra.com-le-ssl.conf
lrwxrwxrwx 1 root root 37 Apr 17  2018 katanalabs.co.conf -> ../sites-available/katanalabs.co.conf
lrwxrwxrwx 1 root root 54 Apr 17  2018 katanalabs.co-le-ssl.conf -> /etc/apache2/sites-available/katanalabs.co-le-ssl.conf
lrwxrwxrwx 1 root root 33 Nov 21  2017 lienzo.co.conf -> ../sites-available/lienzo.co.conf
lrwxrwxrwx 1 root root 50 Dec 19  2017 lienzo.co-le-ssl.conf -> /etc/apache2/sites-available/lienzo.co-le-ssl.conf
lrwxrwxrwx 1 root root 38 Mar 30  2017 mandiorama.com.conf -> ../sites-available/mandiorama.com.conf
lrwxrwxrwx 1 root root 55 Sep  8  2017 mandiorama.com-le-ssl.conf -> /etc/apache2/sites-available/mandiorama.com-le-ssl.conf
lrwxrwxrwx 1 root root 36 Sep 24 19:53 markmeyer.me.conf -> ../sites-available/markmeyer.me.conf
lrwxrwxrwx 1 root root 53 Sep 24 19:54 markmeyer.me-le-ssl.conf -> /etc/apache2/sites-available/markmeyer.me-le-ssl.conf
lrwxrwxrwx 1 root root 33 Nov 11  2017 memium.me.conf -> ../sites-available/memium.me.conf
lrwxrwxrwx 1 root root 50 Apr 25 15:24 memium.me-le-ssl.conf -> /etc/apache2/sites-available/memium.me-le-ssl.conf
lrwxrwxrwx 1 root root 39 Apr 29  2016 meyerymeyer.com.conf -> ../sites-available/meyerymeyer.com.conf
lrwxrwxrwx 1 root root 33 Mar  9  2018 otisa.com.conf -> ../sites-available/otisa.com.conf
lrwxrwxrwx 1 root root 50 Mar 13  2018 otisa.com-le-ssl.conf -> /etc/apache2/sites-available/otisa.com-le-ssl.conf
lrwxrwxrwx 1 root root 41 Sep 10 11:22 paraquaria.org.py.conf -> ../sites-available/paraquaria.org.py.conf
lrwxrwxrwx 1 root root 58 Sep 11 17:58 paraquaria.org.py-le-ssl.conf -> /etc/apache2/sites-available/paraquaria.org.py-le-ssl.conf
lrwxrwxrwx 1 root root 39 Apr  5  2018 passport.travel.conf -> ../sites-available/passport.travel.conf
lrwxrwxrwx 1 root root 39 Jul 12 17:58 paycongress.com.conf -> ../sites-available/paycongress.com.conf
lrwxrwxrwx 1 root root 56 Jul 12 18:01 paycongress.com-le-ssl.conf -> /etc/apache2/sites-available/paycongress.com-le-ssl.conf
lrwxrwxrwx 1 root root 38 Aug  7  2017 picante.com.py.conf -> ../sites-available/picante.com.py.conf
lrwxrwxrwx 1 root root 55 Aug 18  2017 picante.com.py-le-ssl.conf -> /etc/apache2/sites-available/picante.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 43 Jul 27  2017 punkdelosperros.com.conf -> ../sites-available/punkdelosperros.com.conf
lrwxrwxrwx 1 root root 60 Jul 27  2017 punkdelosperros.com-le-ssl.conf -> /etc/apache2/sites-available/punkdelosperros.com-le-ssl.conf
lrwxrwxrwx 1 root root 36 Oct 10  2017 queenofb.com.conf -> ../sites-available/queenofb.com.conf
lrwxrwxrwx 1 root root 53 Oct 10  2017 queenofb.com-le-ssl.conf -> /etc/apache2/sites-available/queenofb.com-le-ssl.conf
lrwxrwxrwx 1 root root 37 Oct 10 12:51 random.com.py.conf -> ../sites-available/random.com.py.conf
lrwxrwxrwx 1 root root 54 Oct 10 12:52 random.com.py-le-ssl.conf -> /etc/apache2/sites-available/random.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 37 Jun  6 12:51 randomedia.co.conf -> ../sites-available/randomedia.co.conf
lrwxrwxrwx 1 root root 54 Jun  6 12:52 randomedia.co-le-ssl.conf -> /etc/apache2/sites-available/randomedia.co-le-ssl.conf
lrwxrwxrwx 1 root root 39 May  2 17:21 randomsounds.co.conf -> ../sites-available/randomsounds.co.conf
lrwxrwxrwx 1 root root 56 May  2 17:45 randomsounds.co-le-ssl.conf -> /etc/apache2/sites-available/randomsounds.co-le-ssl.conf
lrwxrwxrwx 1 root root 43 Apr 29  2016 randomsounds.com.py.conf -> ../sites-available/randomsounds.com.py.conf
lrwxrwxrwx 1 root root 60 May 28 17:32 randomsounds.com.py-le-ssl.conf -> /etc/apache2/sites-available/randomsounds.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 38 Oct 26  2016 revolberfx.com.conf -> ../sites-available/revolberfx.com.conf
lrwxrwxrwx 1 root root 55 Sep 27  2017 revolberfx.com-le-ssl.conf -> /etc/apache2/sites-available/revolberfx.com-le-ssl.conf
lrwxrwxrwx 1 root root 38 Nov 19  2017 seeglasspy.com.conf -> ../sites-available/seeglasspy.com.conf
lrwxrwxrwx 1 root root 52 Jun 19 19:48 sionelectrodomesticos.com.py.conf -> ../sites-available/sionelectrodomesticos.com.py.conf
lrwxrwxrwx 1 root root 69 Jun 19 19:51 sionelectrodomesticos.com.py-le-ssl.conf -> /etc/apache2/sites-available/sionelectrodomesticos.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 40 Jun 13  2017 socialred.com.py.conf -> ../sites-available/socialred.com.py.conf
lrwxrwxrwx 1 root root 57 Jul  7  2017 socialred.com.py-le-ssl.conf -> /etc/apache2/sites-available/socialred.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 33 Apr 17  2018 soda.cool.conf -> ../sites-available/soda.cool.conf
lrwxrwxrwx 1 root root 50 Apr 17  2018 soda.cool-le-ssl.conf -> /etc/apache2/sites-available/soda.cool-le-ssl.conf
lrwxrwxrwx 1 root root 45 Mar  7  2018 spintheblackmango.com.conf -> ../sites-available/spintheblackmango.com.conf
lrwxrwxrwx 1 root root 62 Mar  7  2018 spintheblackmango.com-le-ssl.conf -> /etc/apache2/sites-available/spintheblackmango.com-le-ssl.conf
lrwxrwxrwx 1 root root 47 Oct 18 16:58 unidospodemosmas.com.py.conf -> ../sites-available/unidospodemosmas.com.py.conf
lrwxrwxrwx 1 root root 64 Oct 22 10:44 unidospodemosmas.com.py-le-ssl.conf -> /etc/apache2/sites-available/unidospodemosmas.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 35 Sep  7  2017 viadedo.com.conf -> ../sites-available/viadedo.com.conf
lrwxrwxrwx 1 root root 52 Sep  7  2017 viadedo.com-le-ssl.conf -> /etc/apache2/sites-available/viadedo.com-le-ssl.conf
lrwxrwxrwx 1 root root 46 Oct 17 08:49 www.abrecuentas.com.py.conf -> ../sites-available/www.abrecuentas.com.py.conf
lrwxrwxrwx 1 root root 63 Oct 18 17:28 www.abrecuentas.com.py-le-ssl.conf -> /etc/apache2/sites-available/www.abrecuentas.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 42 Oct 22 11:15 www.aibestudio.com.conf -> ../sites-available/www.aibestudio.com.conf
lrwxrwxrwx 1 root root 59 Oct 22 11:16 www.aibestudio.com-le-ssl.conf -> /etc/apache2/sites-available/www.aibestudio.com-le-ssl.conf
lrwxrwxrwx 1 root root 40 Oct 10 16:37 www.cardonah.com.conf -> ../sites-available/www.cardonah.com.conf
lrwxrwxrwx 1 root root 49 Oct  5 11:33 www.consorcioaviation.com.conf -> ../sites-available/www.consorcioaviation.com.conf
lrwxrwxrwx 1 root root 66 Oct  5 16:22 www.consorcioaviation.com-le-ssl.conf -> /etc/apache2/sites-available/www.consorcioaviation.com-le-ssl.conf
lrwxrwxrwx 1 root root 44 Aug 20 11:23 www.consorciobox.com.conf -> ../sites-available/www.consorciobox.com.conf
lrwxrwxrwx 1 root root 61 Aug 20 11:24 www.consorciobox.com-le-ssl.conf -> /etc/apache2/sites-available/www.consorciobox.com-le-ssl.conf
lrwxrwxrwx 1 root root 42 Sep 11 17:01 www.diexcar.com.py.conf -> ../sites-available/www.diexcar.com.py.conf
lrwxrwxrwx 1 root root 59 Sep 12 16:03 www.diexcar.com.py-le-ssl.conf -> /etc/apache2/sites-available/www.diexcar.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 40 Jun 14 15:59 www.fiab2018.com.conf -> ../sites-available/www.fiab2018.com.conf
lrwxrwxrwx 1 root root 57 Jun 14 16:00 www.fiab2018.com-le-ssl.conf -> /etc/apache2/sites-available/www.fiab2018.com-le-ssl.conf
lrwxrwxrwx 1 root root 40 Sep 24 19:53 www-markmeyer.me.conf -> ../sites-available/www-markmeyer.me.conf
lrwxrwxrwx 1 root root 57 Sep 24 19:55 www-markmeyer.me-le-ssl.conf -> /etc/apache2/sites-available/www-markmeyer.me-le-ssl.conf
lrwxrwxrwx 1 root root 45 Sep 10 11:22 www.paraquaria.org.py.conf -> ../sites-available/www.paraquaria.org.py.conf
lrwxrwxrwx 1 root root 62 Sep 11 17:58 www.paraquaria.org.py-le-ssl.conf -> /etc/apache2/sites-available/www.paraquaria.org.py-le-ssl.conf
lrwxrwxrwx 1 root root 43 Jul 12 16:54 www.paycongress.com.conf -> ../sites-available/www.paycongress.com.conf
lrwxrwxrwx 1 root root 60 Jul 12 18:01 www.paycongress.com-le-ssl.conf -> /etc/apache2/sites-available/www.paycongress.com-le-ssl.conf
lrwxrwxrwx 1 root root 41 Oct  9 15:52 www.random.com.py.conf -> ../sites-available/www.random.com.py.conf
lrwxrwxrwx 1 root root 48 Oct  9 15:52 www.random.com.py-le-ssl.conf -> ../sites-available/www.random.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 43 May 22 15:49 www.randomsounds.co.conf -> ../sites-available/www.randomsounds.co.conf
lrwxrwxrwx 1 root root 60 May 22 15:49 www.randomsounds.co-le-ssl.conf -> /etc/apache2/sites-available/www.randomsounds.co-le-ssl.conf
lrwxrwxrwx 1 root root 47 May 28 17:31 www.randomsounds.com.py.conf -> ../sites-available/www.randomsounds.com.py.conf
lrwxrwxrwx 1 root root 64 Jun  7 15:44 www.randomsounds.com.py-le-ssl.conf -> /etc/apache2/sites-available/www.randomsounds.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 56 Jun 19 19:50 www.sionelectrodomesticos.com.py.conf -> ../sites-available/www.sionelectrodomesticos.com.py.conf
lrwxrwxrwx 1 root root 73 Jun 19 19:51 www.sionelectrodomesticos.com.py-le-ssl.conf -> /etc/apache2/sites-available/www.sionelectrodomesticos.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 51 Oct 18 17:11 www.unidospodemosmas.com.py.conf -> ../sites-available/www.unidospodemosmas.com.py.conf
lrwxrwxrwx 1 root root 36 Apr  5  2018 zoila.com.py.conf -> ../sites-available/zoila.com.py.conf
lrwxrwxrwx 1 root root 53 Apr  5  2018 zoila.com.py-le-ssl.conf -> /etc/apache2/sites-available/zoila.com.py-le-ssl.conf
lrwxrwxrwx 1 root root 30 Apr  5  2018 zoi.la.conf -> ../sites-available/zoi.la.conf
lrwxrwxrwx 1 root root 37 Jul 13 12:04 zoi.la-le-ssl.conf -> ../sites-available/zoi.la-le-ssl.conf

Output of grep -Eri 'servername|alias|virtual|443' /etc/apache2/sites-enabled/*.conf is:

/etc/apache2/sites-enabled/00000.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/00000.conf:  ServerName prox.random.com.py
/etc/apache2/sites-enabled/00000.conf:</VirtualHost>
/etc/apache2/sites-enabled/162.243.215.43.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/162.243.215.43.conf: ServerName 162.243.215.43
/etc/apache2/sites-enabled/162.243.215.43.conf: Alias /phpmyadmin /usr/share/phpmyadmin
/etc/apache2/sites-enabled/162.243.215.43.conf:</VirtualHost>
/etc/apache2/sites-enabled/aadip.org.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/aadip.org.conf:      ServerName aadip.org
/etc/apache2/sites-enabled/aadip.org.conf:      ServerAlias www.aadip.org
/etc/apache2/sites-enabled/aadip.org.conf:</VirtualHost>
/etc/apache2/sites-enabled/abrecuentas.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/abrecuentas.com.py.conf:     ServerName abrecuentas.com.py
/etc/apache2/sites-enabled/abrecuentas.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:      ServerName abrecuentas.com.py
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:      ServerName abrecuentas.com.py
/etc/apache2/sites-enabled/abrecuentas.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/aibestudio.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/aibestudio.com.conf: ServerName aibestudio.com
/etc/apache2/sites-enabled/aibestudio.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/aibestudio.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/aibestudio.com-le-ssl.conf:  ServerName aibestudio.com
/etc/apache2/sites-enabled/aibestudio.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/alephsrl.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/alephsrl.com.py.conf:        ServerName alephsrl.com.py
/etc/apache2/sites-enabled/alephsrl.com.py.conf:        ServerAlias www.alephsrl.com.py
/etc/apache2/sites-enabled/alephsrl.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/atardecerenparaguay.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/atardecerenparaguay.com.conf:        ServerName atardecerenparaguay.com
/etc/apache2/sites-enabled/atardecerenparaguay.com.conf:        ServerAlias www.atardecerenparaguay.com
/etc/apache2/sites-enabled/atardecerenparaguay.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/atardecerenparaguay.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/atardecerenparaguay.com-le-ssl.conf: ServerName atardecerenparaguay.com
/etc/apache2/sites-enabled/atardecerenparaguay.com-le-ssl.conf: ServerAlias www.atardecerenparaguay.com
/etc/apache2/sites-enabled/atardecerenparaguay.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/budnburgers.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/budnburgers.com.py.conf:     ServerName budnburgers.com.py
/etc/apache2/sites-enabled/budnburgers.com.py.conf:     ServerAlias www.budnburgers.com.py
/etc/apache2/sites-enabled/budnburgers.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/budnburgers.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/budnburgers.com.py-le-ssl.conf:      ServerName budnburgers.com.py
/etc/apache2/sites-enabled/budnburgers.com.py-le-ssl.conf:      ServerAlias www.budnburgers.com.py
/etc/apache2/sites-enabled/budnburgers.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/canchachica.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/canchachica.com.conf:        ServerName canchachica.com
/etc/apache2/sites-enabled/canchachica.com.conf:        ServerAlias www.canchachica.com
/etc/apache2/sites-enabled/canchachica.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/canchachica.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/canchachica.com-le-ssl.conf: ServerName canchachica.com
/etc/apache2/sites-enabled/canchachica.com-le-ssl.conf: ServerAlias www.canchachica.com
/etc/apache2/sites-enabled/canchachica.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/canchachica.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/canchachica.com.py.conf:     ServerName canchachica.com.py
/etc/apache2/sites-enabled/canchachica.com.py.conf:     ServerAlias www.canchachica.com.py
/etc/apache2/sites-enabled/canchachica.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/canchachica.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/canchachica.com.py-le-ssl.conf:      ServerName canchachica.com.py
/etc/apache2/sites-enabled/canchachica.com.py-le-ssl.conf:      ServerAlias www.canchachica.com.py
/etc/apache2/sites-enabled/canchachica.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/cardonah.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/cardonah.com.conf:   ServerName cardonah.com
/etc/apache2/sites-enabled/cardonah.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/cardonah.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/cardonah.com-le-ssl.conf:    ServerName cardonah.com
/etc/apache2/sites-enabled/cardonah.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/cervezacorona.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/cervezacorona.com.py.conf:   ServerName cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py.conf:   ServerAlias www.cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:    ServerName cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:    ServerAlias www.cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:    ServerName cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:    ServerAlias www.cervezacorona.com.py
/etc/apache2/sites-enabled/cervezacorona.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/cespedpar.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/cespedpar.com.conf:  ServerName cespedpar.com
/etc/apache2/sites-enabled/cespedpar.com.conf:  ServerAlias www.cespedpar.com
/etc/apache2/sites-enabled/cespedpar.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/cespedpar.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/cespedpar.com-le-ssl.conf:   ServerName cespedpar.com
/etc/apache2/sites-enabled/cespedpar.com-le-ssl.conf:   ServerAlias www.cespedpar.com
/etc/apache2/sites-enabled/cespedpar.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/chocho.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/chocho.com.py.conf:  ServerName chocho.com.py
/etc/apache2/sites-enabled/chocho.com.py.conf:  ServerAlias www.chocho.com.py
/etc/apache2/sites-enabled/chocho.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/chocho.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/chocho.com.py-le-ssl.conf:   ServerName chocho.com.py
/etc/apache2/sites-enabled/chocho.com.py-le-ssl.conf:   ServerAlias www.chocho.com.py
/etc/apache2/sites-enabled/chocho.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/ciditpy.org.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/ciditpy.org.conf:    ServerName ciditpy.org
/etc/apache2/sites-enabled/ciditpy.org.conf:    ServerAlias www.ciditpy.org
/etc/apache2/sites-enabled/ciditpy.org.conf:</VirtualHost>
/etc/apache2/sites-enabled/ciditpy.org-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/ciditpy.org-le-ssl.conf:     ServerName ciditpy.org
/etc/apache2/sites-enabled/ciditpy.org-le-ssl.conf:     ServerAlias www.ciditpy.org
/etc/apache2/sites-enabled/ciditpy.org-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/clubolimpia.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/clubolimpia.com.py.conf:     ServerName clubolimpia.com.py
/etc/apache2/sites-enabled/clubolimpia.com.py.conf:     ServerAlias www.clubolimpia.com.py
/etc/apache2/sites-enabled/clubolimpia.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/clubolimpia.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/clubolimpia.com.py-le-ssl.conf:      ServerName clubolimpia.com.py
/etc/apache2/sites-enabled/clubolimpia.com.py-le-ssl.conf:      ServerAlias www.clubolimpia.com.py
/etc/apache2/sites-enabled/clubolimpia.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/consorcioaviation.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/consorcioaviation.com.conf:  ServerName consorcioaviation.com
/etc/apache2/sites-enabled/consorcioaviation.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/consorcioaviation.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/consorcioaviation.com-le-ssl.conf:   ServerName consorcioaviation.com
/etc/apache2/sites-enabled/consorcioaviation.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/consorciobox.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/consorciobox.com.conf:       ServerName consorciobox.com
/etc/apache2/sites-enabled/consorciobox.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/consorciobox.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/consorciobox.com-le-ssl.conf:        ServerName consorciobox.com
/etc/apache2/sites-enabled/consorciobox.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/dev.randomedia.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/dev.randomedia.co.conf:        ServerName dev.randomedia.co
/etc/apache2/sites-enabled/dev.randomedia.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/dev.randomedia.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/dev.randomedia.co-le-ssl.conf:        ServerName dev.randomedia.co
/etc/apache2/sites-enabled/dev.randomedia.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/diexcar.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/diexcar.com.py.conf: ServerName diexcar.com.py
/etc/apache2/sites-enabled/diexcar.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/diexcar.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/diexcar.com.py-le-ssl.conf:  ServerName diexcar.com.py
/etc/apache2/sites-enabled/diexcar.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/elmangonegro.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/elmangonegro.com.conf:       ServerName elmangonegro.com
/etc/apache2/sites-enabled/elmangonegro.com.conf:       ServerAlias www.elmangonegro.com
/etc/apache2/sites-enabled/elmangonegro.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/elmangonegro.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/elmangonegro.com-le-ssl.conf:        ServerName elmangonegro.com
/etc/apache2/sites-enabled/elmangonegro.com-le-ssl.conf:        ServerAlias www.elmangonegro.com
/etc/apache2/sites-enabled/elmangonegro.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/estudiantesalteatro.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/estudiantesalteatro.com.conf:        ServerName estudiantesalteatro.com
/etc/apache2/sites-enabled/estudiantesalteatro.com.conf:        ServerAlias www.estudiantesalteatro.com
/etc/apache2/sites-enabled/estudiantesalteatro.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/fiab2018.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/fiab2018.com.conf:   ServerName fiab2018.com
/etc/apache2/sites-enabled/fiab2018.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/fiab2018.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/fiab2018.com-le-ssl.conf:    ServerName fiab2018.com
/etc/apache2/sites-enabled/fiab2018.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/hyline.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/hyline.com.py.conf:  ServerName hyline.com.py
/etc/apache2/sites-enabled/hyline.com.py.conf:  ServerAlias www.hyline.com.py
/etc/apache2/sites-enabled/hyline.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/hyline.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/hyline.com.py-le-ssl.conf:   ServerName hyline.com.py
/etc/apache2/sites-enabled/hyline.com.py-le-ssl.conf:   ServerAlias www.hyline.com.py
/etc/apache2/sites-enabled/hyline.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/innobra.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/innobra.com.conf:    ServerName innobra.com
/etc/apache2/sites-enabled/innobra.com.conf:    ServerAlias www.innobra.com
/etc/apache2/sites-enabled/innobra.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/innobra.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/innobra.com-le-ssl.conf:     ServerName innobra.com
/etc/apache2/sites-enabled/innobra.com-le-ssl.conf:     ServerAlias www.innobra.com
/etc/apache2/sites-enabled/innobra.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/katanalabs.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/katanalabs.co.conf:  ServerName katanalabs.co
/etc/apache2/sites-enabled/katanalabs.co.conf:  ServerAlias www.katanalabs.co
/etc/apache2/sites-enabled/katanalabs.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/katanalabs.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/katanalabs.co-le-ssl.conf:   ServerName katanalabs.co
/etc/apache2/sites-enabled/katanalabs.co-le-ssl.conf:   ServerAlias www.katanalabs.co
/etc/apache2/sites-enabled/katanalabs.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/lienzo.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/lienzo.co.conf:      ServerName lienzo.co
/etc/apache2/sites-enabled/lienzo.co.conf:      ServerAlias www.lienzo.co
/etc/apache2/sites-enabled/lienzo.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/lienzo.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/lienzo.co-le-ssl.conf:       ServerName lienzo.co
/etc/apache2/sites-enabled/lienzo.co-le-ssl.conf:       ServerAlias www.lienzo.co
/etc/apache2/sites-enabled/lienzo.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/mandiorama.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/mandiorama.com.conf: ServerName mandiorama.com
/etc/apache2/sites-enabled/mandiorama.com.conf: ServerAlias www.mandiorama.com
/etc/apache2/sites-enabled/mandiorama.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/mandiorama.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/mandiorama.com-le-ssl.conf:  ServerName mandiorama.com
/etc/apache2/sites-enabled/mandiorama.com-le-ssl.conf:  ServerAlias www.mandiorama.com
/etc/apache2/sites-enabled/mandiorama.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/markmeyer.me.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/markmeyer.me.conf:   ServerName markmeyer.me
/etc/apache2/sites-enabled/markmeyer.me.conf:</VirtualHost>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:    ServerName markmeyer.me
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:    ServerName markmeyer.me
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:    ServerName markmeyer.me
/etc/apache2/sites-enabled/markmeyer.me-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/memium.me.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/memium.me.conf:      ServerName memium.me
/etc/apache2/sites-enabled/memium.me.conf:      ServerAlias www.memium.me
/etc/apache2/sites-enabled/memium.me.conf:</VirtualHost>
/etc/apache2/sites-enabled/memium.me-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/memium.me-le-ssl.conf:       ServerName memium.me
/etc/apache2/sites-enabled/memium.me-le-ssl.conf:       ServerAlias www.memium.me
/etc/apache2/sites-enabled/memium.me-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/meyerymeyer.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/meyerymeyer.com.conf:        ServerName meyerymeyer.com
/etc/apache2/sites-enabled/meyerymeyer.com.conf:        ServerAlias www.meyerymeyer.com
/etc/apache2/sites-enabled/meyerymeyer.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/otisa.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/otisa.com.conf:      ServerName otisa.com
/etc/apache2/sites-enabled/otisa.com.conf:      ServerAlias www.otisa.com
/etc/apache2/sites-enabled/otisa.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/otisa.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/otisa.com-le-ssl.conf:       ServerName otisa.com
/etc/apache2/sites-enabled/otisa.com-le-ssl.conf:       ServerAlias www.otisa.com
/etc/apache2/sites-enabled/otisa.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/paraquaria.org.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/paraquaria.org.py.conf:      ServerName paraquaria.org.py
/etc/apache2/sites-enabled/paraquaria.org.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/paraquaria.org.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/paraquaria.org.py-le-ssl.conf:       ServerName paraquaria.org.py
/etc/apache2/sites-enabled/paraquaria.org.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/passport.travel.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/passport.travel.conf:        ServerName passport.travel
/etc/apache2/sites-enabled/passport.travel.conf:        ServerAlias www.passport.travel
/etc/apache2/sites-enabled/passport.travel.conf:</VirtualHost>
/etc/apache2/sites-enabled/paycongress.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/paycongress.com.conf:        ServerName paycongress.com
/etc/apache2/sites-enabled/paycongress.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/paycongress.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/paycongress.com-le-ssl.conf: ServerName paycongress.com
/etc/apache2/sites-enabled/paycongress.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/picante.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/picante.com.py.conf: ServerName picante.com.py
/etc/apache2/sites-enabled/picante.com.py.conf: ServerAlias www.picante.com.py
/etc/apache2/sites-enabled/picante.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/picante.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/picante.com.py-le-ssl.conf:  ServerName picante.com.py
/etc/apache2/sites-enabled/picante.com.py-le-ssl.conf:  ServerAlias www.picante.com.py
/etc/apache2/sites-enabled/picante.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/punkdelosperros.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/punkdelosperros.com.conf:    ServerName punkdelosperros.com
/etc/apache2/sites-enabled/punkdelosperros.com.conf:    ServerAlias www.punkdelosperros.com
/etc/apache2/sites-enabled/punkdelosperros.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/punkdelosperros.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/punkdelosperros.com-le-ssl.conf:     ServerName punkdelosperros.com
/etc/apache2/sites-enabled/punkdelosperros.com-le-ssl.conf:     ServerAlias www.punkdelosperros.com
/etc/apache2/sites-enabled/punkdelosperros.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/queenofb.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/queenofb.com.conf:   ServerName queenofb.com
/etc/apache2/sites-enabled/queenofb.com.conf:   ServerAlias www.queenofb.com
/etc/apache2/sites-enabled/queenofb.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/queenofb.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/queenofb.com-le-ssl.conf:    ServerName queenofb.com
/etc/apache2/sites-enabled/queenofb.com-le-ssl.conf:    ServerAlias www.queenofb.com
/etc/apache2/sites-enabled/queenofb.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/random.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/random.com.py.conf:  ServerName random.com.py
/etc/apache2/sites-enabled/random.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:   ServerName random.com.py
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:   ServerName random.com.py
/etc/apache2/sites-enabled/random.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomedia.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/randomedia.co.conf:  ServerName randomedia.co
/etc/apache2/sites-enabled/randomedia.co.conf:  ServerAlias www.randomedia.co
/etc/apache2/sites-enabled/randomedia.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomedia.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/randomedia.co-le-ssl.conf:   ServerName randomedia.co
/etc/apache2/sites-enabled/randomedia.co-le-ssl.conf:   ServerAlias www.randomedia.co
/etc/apache2/sites-enabled/randomedia.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomsounds.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/randomsounds.co.conf:        ServerName randomsounds.co
/etc/apache2/sites-enabled/randomsounds.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomsounds.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/randomsounds.co-le-ssl.conf: ServerName randomsounds.co
/etc/apache2/sites-enabled/randomsounds.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomsounds.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/randomsounds.com.py.conf:    ServerName randomsounds.com.py
/etc/apache2/sites-enabled/randomsounds.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/randomsounds.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/randomsounds.com.py-le-ssl.conf:     ServerName randomsounds.com.py
/etc/apache2/sites-enabled/randomsounds.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/revolberfx.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/revolberfx.com.conf: ServerName revolberfx.com
/etc/apache2/sites-enabled/revolberfx.com.conf: ServerAlias www.revolberfx.com
/etc/apache2/sites-enabled/revolberfx.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/revolberfx.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/revolberfx.com-le-ssl.conf:  ServerName revolberfx.com
/etc/apache2/sites-enabled/revolberfx.com-le-ssl.conf:  ServerAlias www.revolberfx.com
/etc/apache2/sites-enabled/revolberfx.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/seeglasspy.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/seeglasspy.com.conf: ServerName seeglasspy.com
/etc/apache2/sites-enabled/seeglasspy.com.conf: ServerAlias www.seeglasspy.com
/etc/apache2/sites-enabled/seeglasspy.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py.conf:   ServerName sionelectrodomesticos.com.py
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py-le-ssl.conf:    ServerName sionelectrodomesticos.com.py
/etc/apache2/sites-enabled/sionelectrodomesticos.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/socialred.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/socialred.com.py.conf:       ServerName socialred.com.py
/etc/apache2/sites-enabled/socialred.com.py.conf:       ServerAlias www.socialred.com.py
/etc/apache2/sites-enabled/socialred.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/socialred.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/socialred.com.py-le-ssl.conf:        ServerName socialred.com.py
/etc/apache2/sites-enabled/socialred.com.py-le-ssl.conf:        ServerAlias www.socialred.com.py
/etc/apache2/sites-enabled/socialred.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/soda.cool.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/soda.cool.conf:      ServerName soda.cool
/etc/apache2/sites-enabled/soda.cool.conf:      ServerAlias www.soda.cool
/etc/apache2/sites-enabled/soda.cool.conf:</VirtualHost>
/etc/apache2/sites-enabled/soda.cool-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/soda.cool-le-ssl.conf:       ServerName soda.cool
/etc/apache2/sites-enabled/soda.cool-le-ssl.conf:       ServerAlias www.soda.cool
/etc/apache2/sites-enabled/soda.cool-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/spintheblackmango.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/spintheblackmango.com.conf:  ServerName spintheblackmango.com
/etc/apache2/sites-enabled/spintheblackmango.com.conf:  ServerAlias www.spintheblackmango.com
/etc/apache2/sites-enabled/spintheblackmango.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/spintheblackmango.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/spintheblackmango.com-le-ssl.conf:   ServerName spintheblackmango.com
/etc/apache2/sites-enabled/spintheblackmango.com-le-ssl.conf:   ServerAlias www.spintheblackmango.com
/etc/apache2/sites-enabled/spintheblackmango.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/unidospodemosmas.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/unidospodemosmas.com.py.conf:        ServerName unidospodemosmas.com.py
/etc/apache2/sites-enabled/unidospodemosmas.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/unidospodemosmas.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/unidospodemosmas.com.py-le-ssl.conf: ServerName unidospodemosmas.com.py
/etc/apache2/sites-enabled/unidospodemosmas.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/viadedo.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/viadedo.com.conf:    ServerName viadedo.com
/etc/apache2/sites-enabled/viadedo.com.conf:    ServerAlias www.viadedo.com
/etc/apache2/sites-enabled/viadedo.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/viadedo.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/viadedo.com-le-ssl.conf:     ServerName viadedo.com
/etc/apache2/sites-enabled/viadedo.com-le-ssl.conf:     ServerAlias www.viadedo.com
/etc/apache2/sites-enabled/viadedo.com-le-ssl.conf:</VirtualHost>

(continues in next reply)

/etc/apache2/sites-enabled/www.abrecuentas.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.abrecuentas.com.py.conf: ServerName www.abrecuentas.com.py
/etc/apache2/sites-enabled/www.abrecuentas.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:<VirtualHost *:44 >
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:  ServerName www.abrecuentas.com.py
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:  ServerName www.abrecuentas.com.py
/etc/apache2/sites-enabled/www.abrecuentas.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.aibestudio.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.aibestudio.com.conf:     ServerName www.aibestudio.com
/etc/apache2/sites-enabled/www.aibestudio.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.aibestudio.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.aibestudio.com-le-ssl.conf:      ServerName www.aibestudio.com
/etc/apache2/sites-enabled/www.aibestudio.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.cardonah.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.cardonah.com.conf:       ServerName www.cardonah.com
/etc/apache2/sites-enabled/www.cardonah.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.consorcioaviation.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.consorcioaviation.com.conf:      ServerName www.consorcioaviation.com
/etc/apache2/sites-enabled/www.consorcioaviation.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.consorcioaviation.com-le-ssl.conf:<VirtualHost * 443>
/etc/apache2/sites-enabled/www.consorcioaviation.com-le-ssl.conf:       ServerName www.consorcioaviation.com
/etc/apache2/sites-enabled/www.consorcioaviation.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.consorciobox.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.consorciobox.com.conf:   ServerName www.consorciobox.com
/etc/apache2/sites-enabled/www.consorciobox.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.consorciobox.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.consorciobox.com-le-ssl.conf:    ServerName www.consorciobox.com
/etc/apache2/sites-enabled/www.consorciobox.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.diexcar.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.diexcar.com.py.conf:     ServerName www.diexcar.com.py
/etc/apache2/sites-enabled/www.diexcar.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.diexcar.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.diexcar.com.py-le-ssl.conf:      ServerName www.diexcar.com.py
/etc/apache2/sites-enabled/www.diexcar.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.fiab2018.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.fiab2018.com.conf:       ServerName www.fiab2018.com
/etc/apache2/sites-enabled/www.fiab2018.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.fiab2018.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.fiab2018.com-le-ssl.conf:        ServerName www.fiab2018.com
/etc/apache2/sites-enabled/www.fiab2018.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www-markmeyer.me.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www-markmeyer.me.conf:       ServerName www.markmeyer.me
/etc/apache2/sites-enabled/www-markmeyer.me.conf:</VirtualHost>
/etc/apache2/sites-enabled/www-markmeyer.me-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www-markmeyer.me-le-ssl.conf:        ServerName www.markmeyer.me
/etc/apache2/sites-enabled/www-markmeyer.me-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.paraquaria.org.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.paraquaria.org.py.conf:  ServerName www.paraquaria.org.py
/etc/apache2/sites-enabled/www.paraquaria.org.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.paraquaria.org.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.paraquaria.org.py-le-ssl.conf:   ServerName www.paraquaria.org.py
/etc/apache2/sites-enabled/www.paraquaria.org.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.paycongress.com.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.paycongress.com.conf:    ServerName www.paycongress.com
/etc/apache2/sites-enabled/www.paycongress.com.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.paycongress.com-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.paycongress.com-le-ssl.conf:     ServerName www.paycongress.com
/etc/apache2/sites-enabled/www.paycongress.com-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.random.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.random.com.py.conf:      ServerName www.random.com.py
/etc/apache2/sites-enabled/www.random.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.random.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.random.com.py-le-ssl.conf:       ServerName www.random.com.py
/etc/apache2/sites-enabled/www.random.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.randomsounds.co.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.randomsounds.co.conf:    ServerName www.randomsounds.co
/etc/apache2/sites-enabled/www.randomsounds.co.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.randomsounds.co-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.randomsounds.co-le-ssl.conf:     ServerName www.randomsounds.co
/etc/apache2/sites-enabled/www.randomsounds.co-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.randomsounds.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.randomsounds.com.py.conf:        ServerName www.randomsounds.com.py
/etc/apache2/sites-enabled/www.randomsounds.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.randomsounds.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/www.randomsounds.com.py-le-ssl.conf: ServerName www.randomsounds.com.py
/etc/apache2/sites-enabled/www.randomsounds.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py.conf:       ServerName www.sionelectrodomesticos.com.py
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py-le-ssl.conf:<Virtua Host *:443>
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py-le-ssl.conf:       ServerName www.sionelectrodomesticos.com.py
/etc/apache2/sites-enabled/www.sionelectrodomesticos.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/www.unidospodemosmas.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/www.unidospodemosmas.com.py.conf:    ServerName www.unidospodemosmas.com.py
/etc/apache2/sites-enabled/www.unidospodemosmas.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/zoila.com.py.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/zoila.com.py.conf:   ServerName zoila.com.py
/etc/apache2/sites-enabled/zoila.com.py.conf:   ServerAlias www.zoila.com.py
/etc/apache2/sites-enabled/zoila.com.py.conf:</VirtualHost>
/etc/apache2/sites-enabled/zoila.com.py-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/zoila.com.py-le-ssl.conf:    ServerName zoila.com.py
/etc/apache2/sites-enabled/zoila.com.py-le-ssl.conf:    ServerAlias www.zoila.com.py
/etc/apache2/sites-enabled/zoila.com.py-le-ssl.conf:</VirtualHost>
/etc/apache2/sites-enabled/zoi.la.conf:<VirtualHost *:80>
/etc/apache2/sites-enabled/zoi.la.conf: ServerName zoi.la
/etc/apache2/sites-enabled/zoi.la.conf: ServerAlias www.zoi.la
/etc/apache2/sites-enabled/zoi.la.conf:</VirtualHost>
/etc/apache2/sites-enabled/zoi.la-le-ssl.conf:<VirtualHost *:443>
/etc/apache2/sites-enabled/zoi.la-le-ssl.conf:  ServerName zoi.la
/etc/apache2/sites-enabled/zoi.la-le-ssl.conf:  ServerAlias www.zoi.la
/etc/apache2/sites-enabled/zoi.la-le-ssl.conf:</VirtualHost>

Only one cert has more than 2 names:
Certificate Name: api.randomsounds.co
Domains: api.randomsounds.co randomsounds.co randomsounds.com.py www.randomsounds.co www.randomsounds.com.py

But that doesn’t seem to be related…

Yes, the analysis of https://www.ssllabs.com/ssltest/analyze.html?d=unidospodemosmas.com.py is:




Please show:
/etc/apache2/sites-enabled/www.unidospodemosmas.com.py.conf

I haven’t generated a SSL certificate for www.unidospodemosmas.com.py yet.

/etc/apache2/sites-enabled/www.unidospodemosmas.com.py.conf

<VirtualHost *:80>

	ServerAdmin hola@xxxxxxx.xxxx
	ServerName www.unidospodemosmas.com.py
	DocumentRoot /var/www/unidospodemosmas.com.py/public_html
	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Hi @markimeyer

there is no problem. It’s a result using SNI.

You have a Grade A. If your site requires SNI-support, it’s normal that there are other websites with other certificates and with certificate mismatch, if the client doesn’t support SNI.

My own site has *.example.com as non-SNI-certificate (default 443 - configuration).

And some other domains with certificates and SNI-check.

Checking these domains -> second certificate *.example.com, mismatch ->> normal.

The problem is that the main browsers show the error:

I don't see an error.

py

If you would have an error, you wouldn't get a grade A. All three domains have Grade A.

The only thing: The certificate has only one domain name.

unidospodemosmas.com.py

So it doesn't work with www.unidospodemosmas.com.py. In Germany, this would be terrible, because a lot of people add www.

Checking www.unidospodemosmas.com.py - there is an error.

www.unidospodemosmas.com.py verwendet ein ungültiges Sicherheitszertifikat. Das Zertifikat ist nur gültig für abrecuentas.com.py.

But this is typical if a site is hosted with other sites and uses SNI.

If this is critical, create one certificate with two names

unidospodemosmas.com.py
www.unidospodemosmas.com.py

and use this.

I requested unidospodemosmas.com.py a few times. Sometimes it’s fine, other times it gives me the wrong certificate - and the wrong site’s content as well.

I don’t know why, though :frowning:

I just installed the certificate for www.unidospodemosmas.com.py

The problem is really weird, because sometimes it works, sometimes it doesn’t.