..................................
发布时间:2018-09-17 17:28:02
1、安装tar -xvjf /opt/pure-ftpd-1.0.47.tar.bz2cd pure-ftpd-1.0.47./configure --prefix=/usr/local/pure-ftpd/ --with-language=simplified-chinese --with-everythingmake && make check && make install2.创建一个用户的上传目录mkdir -p /home/ftpdir/user13.添加一个pure-ftpd用户/usr/local/pure-ftpd/b.........【阅读全文】
发布时间:2018-07-19 09:52:32
相关证书转换参见:http://netkiller.github.io/cryptography/openssl/format.html#转换格式 .cer 到 .pemopenssl x509 -inform der -in twca.cer -out twca.pem#追加到信任列表cat twca.pem >> /etc/pki/tls/certs/ca-bundle.crt3.........【阅读全文】
发布时间:2018-05-17 15:27:14
302跳转1.不安全,302 跳转会暴露用户访问站点,易被劫持。HSTS采用HSTS协议的网站将保证浏览器始终连接到该网站的HTTPS加密版本,不需要用户手动在URL地址栏中输入加密地址。HSTS的作用是强制客户端(如浏览器)使用HTTPS与服务器创建连接。服务器开启HSTS的方法是,当客户端通过HTTPS发出请求时,在服.........【阅读全文】