摘要:
1.打开配置文件$ sudo vi /etc/ssh/sshd_config2.修改操作PermitRootLogin without-password 修改为PermitRootLogin yes3.重启shh服务或重启计算机$ service sshd restart 阅读全文
摘要:
1、反向代理全局配置 include mime.types; default_type application/octet-stream; client_max_body_size 100m; keepalive_timeout 65; proxy_read_timeout 600s; 2、http 阅读全文
摘要:
安装前准备://更新系统1.sudo apt-get update//安装pcre包2.sudo apt-get install libpcre3 libpcre3-dev3.sudoapt-getinstall openssllibssl-dev 阅读全文
摘要:
function Map() { this.keys = new Array(); this.data = new Array(); //添加键值对this.set = function (key, value) { if (this.data[key] == null) {//如键不存在则身【键】... 阅读全文