Hello!
Tell me how to configure nginx to not take the extra domains. Now why is it accepts all domains. Tried using
server {
listen 80 default;
server_name _;
access_log /dev/null;
error_log /dev/null;
return 444;
}
To clarify, my domain config I have done, I need nginx to cut off all the extra domains.