Nginx error page for setting 403 and 404

Source: Internet
Author: User

Nginx sets error pages such as 403 and 404. In nginx, you can customize the error 403 page or deny some ip addresses, however, if you write it like below, you may find that the custom erro 403 page does not work, but displays the default nginx 403 prompt: deny 192.168.0.1; deny 10.0.0.0/24; error_page 403/error.html; location =/error.html {root/var/www/error.html;} This is because denysentences have granted deny all access to 403.html, therefore, you need to add allow all in the locaction =/403.html statement. The specific process is as follows: # sudo vim/etc/nginx. conf deny 192.168.0.1; deny 10.0.0.0/24; error_page 403/error.html; location =/error.html {root/var/www/error.html; allow all ;}# sudo/etc/init. d/nginx restart is ready for access.

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.