Ahora solo tengo el default "/etc/apache2/sites-enabled/000-default".
Código:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options -Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Tomcat WebApps
JkMount /examples/ ajp13_worker
JkMount /examples/* ajp13_worker
</VirtualHost>
Y en "/etc/apache2/ports.conf" no he cambiado nada y el mod_ssl no lo tengo habilitado por lo que no debería de escuchar por el puerto 443.
Código:
NameVirtualHost *:80
NameVirtualHost miIP
Listen 80
<IfModule mod_ssl.c>
# If you add NameVirtualHost *:443 here, you will also have to change
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
# to <VirtualHost *:443>
# Server Name Indication for SSL named virtual hosts is currently not
# supported by MSIE on Windows XP.
Listen 443
Listen miIP:433
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
Edito:
El ssl ya me funciona pero sigue con el error:
Cita: [....] Restarting web server: apache2[Sat Sep 14 00:10:36 2013] [warn] NameVirtualHost miIP:0 has no VirtualHosts
... waiting .[Sat Sep 14 00:10:38 2013] [warn] NameVirtualHost miIP:0 has no VirtualHosts
. ok
Edito 2:
Si creo otro vhost con mi dominio el ssl da error.
Teniendo en cuenta que no me corre prisa ponerlo en producción, tengo de margen todavía un mes, no me importa volver a formatear. Estoy utilizando este proyecto para aprender sobre el tema, pero ¿qué mejor forma de aprender que saber por qué está fallando?
Un saludo