Nginx-nginx 禁止ip访问
想要通过nginx配置使得禁止ip访问,请教有没有方法?
upstream localhost{
ip_hash;
server 18.14.37.69:80;
server 8.4.17.5:80;
}
server {
listen 80 default;
server_name _;
return 444;
# server_name www.***123.com ***123.com;
# return 500;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost;
}
#error_page 404 /404.html;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开nginx.conf文件,加进去下面一段话:
## Deny access to any host other than (www.).你的域名.com
server {
server_name _; #default
return 444;
}