scrapyd 设置访问密码

Posted angdh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrapyd 设置访问密码相关的知识,希望对你有一定的参考价值。

https://cuiqingcai.com/5445.html


 

 

安装 nginx

 

找到配置文件

find / -name nginx.conf

修改

http {
    server {
        listen 6801;
        location / {
            proxy_pass    http://127.0.0.1:6800/;
            auth_basic    "Restricted";
            auth_basic_user_file    /etc/nginx/conf.d/.htpasswd;
        }
    }
}

 

安装 htpasswd 

https://www.jianshu.com/p/f4120aa561cc

生成密码

在/etc/nginx/conf.d目录下 

htpasswd -c .htpasswd admin

启动 nginx

以上是关于scrapyd 设置访问密码的主要内容,如果未能解决你的问题,请参考以下文章

修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段

Android TalkBack 和片段堆栈

在后台/作为服务运行Scrapyd的首选方法

scrapyd的安装和基本使用

python3下scrapy爬虫(第十四卷:scrapy+scrapy_redis+scrapyd打造分布式爬虫之执行)

如何访问 MainActivity() 中的片段元素?