nginx
桐人、
这个作者很懒,什么都没留下…
展开
-
将nginx添加到服务中启动
启动nginx的shell脚本vim /etc/init.d/nginx#!/bin/bash# nginx Startup script for the Nginx HTTP Server# it is v.0.0.2 version.# chkconfig: - 85 15# description: Nginx is a high-performance web and proxy server.# It has a lot of features, but转载 2021-03-29 10:42:56 · 502 阅读 · 0 评论 -
用nginx封ip,通过shell脚本将恶意访问的ip封禁
最近服务器被恶意攻击,顾将这些访问次数达到一定数值的ip使用nginx做封禁ip的操作。本文将使用shell脚本分析nginx生成的日志,自动封单个ip访问量大于指定值。因为需要分析nginx的日志,所以我们需要将nginx的日志进行分割处理,因为日志太大,消耗的系统资源也就越多。日志分割可以按天分割,也可以按小时分割。我们的access.log是按天进行分割的。首先选择一个目录,新建一个...原创 2019-08-23 16:48:38 · 2116 阅读 · 0 评论