Nginx禁止使用IP访问
在nginx的访问日志中,会出现只显示IP,而不出现域名的情况,在经过尝试之后,是因为没有设置禁止IP访问导致的。
下面就是在配置文件中设置禁止IP访问,来实现日志文件中$host显示域名。
vim /etc/nginx/nginx.conf
server {
listen 80 default;
return 404;
}
nginx -t
systemctl reload nginx
或者:nginx -s reload
查看日志。能够成功即可。
本文来自博客园,作者:Lin-Grocery,转载请注明原文链接:https://www.cnblogs.com/moniter/articles/12305105.html