其他分享
首页 > 其他分享> > 宝塔站长助手插件-智能防爬虫,批量生成robots.txt

宝塔站长助手插件-智能防爬虫,批量生成robots.txt

作者:互联网

github5站长助手

介绍

基于lua开发的开源站长助手, 实现常见的站长功能:

功能界面

由gif.github5.com进行录制

功能详情

反爬防护

对网站进行安全防护,防止网络爬虫恶意请求

主要功能

SEO优化

主要功能

外链发布(开发中)

主要功能

网站监控 (开发中)

部署

首先安装站长助手

cd /opt/
git clone https://github.com/anquanbiji/zhanzhanglua.git 
chmod 777 /opt/zhanzhanglua/log.txt 
chmod 777 /opt/zhanzhanglua/rule.txt  

宝塔环境

宝塔安装

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

找到nginx.conf文件 在http{ 下 添加

include /opt/zhanzhanglua/nginx_conf/in_http_block.conf;

重启nginx

nginx -t 
nginx -s reload  

登录后台
如果您的网站域名是www.atghost.cn
如果您的网站ip是: 47.1.2.4

您的后台地址:
www.atghost.cn/github5
或者
47.1.2.4/github5

openresty

openresty安装

wget https://openresty.org/package/centos/openresty.repo
sudo mv openresty.repo /etc/yum.repos.d/
sudo yum check-update
sudo yum install -y openresty

执行如下命令,查看配置文件

openresty -t 

返回结果

nginx: the configuration file /usr/local/openresty/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test is successful

在 /usr/local/openresty/nginx/conf/nginx.conf 的 http{ 下 添加

include  /opt/zhanzhanglua/nginx_conf/in_http_block.conf;

重启openresty

openresty  -t 
openresty  -s reload  

登录后台
如果您的网站域名是www.atghost.cn
如果您的网站ip是: 47.1.2.4

您的后台地址:
www.atghost.cn/github5
或者
47.1.2.4/github5

其他环境

站长助手依赖nginx lua模块,所有您使用的是apache,iis等其他web服务器,建议先安装openresty或宝塔环境,使用反代方式请求您的网站

后台使用教程

手动配置说明

如果对nginx足够了解,可以手动进行配置, 以下所有指令支持server 或 location 块

常见功能

set $config_all_fun false; 
set $config_check_browser false; 
set $config_check_browser_again false; 
set $config_encode_response false;
set $config_is_error_status false;
set $config_is_error_info false;

常见问题

chmod 777 /opt/zhanzhanglua/rule.txt  

技术支持

每个问题10元QQ群

需求反馈地址

标签:插件,openresty,网站,robots,nginx,conf,后台,txt,github5
来源: https://blog.csdn.net/maoguan121/article/details/121575590