<div dir="ltr">I have multiple files each with a config for a different vhost.<br>On one of these config files (included in the main nginx config file) I set the default_server directive:<br><br>    server {<br>   <br>    listen 80;<br>    listen 443 ssl default_server spdy;<br>    server_name 188.166.X.XXX;<br>    root /var/www/default;<br>    index index.php index.html;<br>      ...<br>    }<br><br>... but it's not respected. If I point the A record of a domain I didn't add in a nginx server block, the first server block in alphabetical order is picked up (instead of the default_server).<br>Why?</div>