I am wondering how is it properly set "default-ssl.conf" parameters, related to the VPS main domain or FQDN (in this example "server.foo.org").
In particular into "default-ssl.conf" is it necessary to indicate the ServerName and aventually ServerAlias values?
Thanks
Example:
Whithout ServerName:
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
[ETC..]
With ServerName:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName foo.org
ServerAlias server.foo.org www.server.foo.org www.foo.org
DocumentRoot /var/www/html
[ETC..]