How to disable the default site in nginx

Source: Internet
Author: User

When someone else redirects a junk domain name to your server, if no action is taken, the consequences will be unimaginable.

Generally, Chinese data centers require the website owner to close the empty Host header to prevent troubles caused by domain names not filed for record.

Nginx's default virtual host allows users to access your VPS or server through an IP address or through an unspecified domain name (for example, someone points his own domain name to your IP address.

By default, you only need to resolve the domain name to the IP address of the VPs, you can access the VPs where lnmp is installed.

To avoid this problem, modify nginx. conf and change the default virtual host to the following to shield Unbound Domain Name access:

CopyCodeThe Code is as follows: Server {
Listen 80 default;
Return 500;
}

You can also collect the traffic and import it to your website. You only need to perform the following redirect settings:Copy codeThe Code is as follows: Server {
Listen 80 default;
Rewrite ^ (. *) http://jb51.net permanent;
}

Similarly, IP access is prohibited and can be written as follows:Copy codeThe Code is as follows: Server {
Listen 80 default;
SERVER_NAME _;
Return 500;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.