上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 125 下一页
摘要: https://github.com/yswenli/Wenli.IEM https://www.cnblogs.com/yswenli/p/6528447.html 阅读全文
posted @ 2021-11-25 09:39 China Soft 阅读(31) 评论(0) 推荐(0)
摘要: https://gitee.com/robergroup/chiner http://www.pdman.cn/#/ https://dbschema.com/ 阅读全文
posted @ 2021-11-23 15:30 China Soft 阅读(29) 评论(0) 推荐(0)
摘要: 在开始学nginx的时候server_name明明没有匹配上,但竟然访问到了,还以为server_name不起作用,后来发现server_name的匹配规则是:先遍历所有配置的server_name,如果找到了,则执行对应的server,如果没有找到,则默认执行第一个server。————————— 阅读全文
posted @ 2021-11-22 14:00 China Soft 阅读(681) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/linxingxunyan/p/6245396.html sql有有四中基本语句,分别是增删改查,在建立model后如何生成这四中sql语句,降低开发时间。 我们先模拟出一张学生表: public class Student { public int 阅读全文
posted @ 2021-11-07 23:58 China Soft 阅读(99) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lavezhang/p/13777018.html 阅读全文
posted @ 2021-11-07 18:08 China Soft 阅读(9) 评论(0) 推荐(0)
摘要: https://transcranial.github.io/keras-js/#/mnist-cnn 阅读全文
posted @ 2021-10-26 14:37 China Soft 阅读(24) 评论(0) 推荐(0)
摘要: stream { upstream server1{ hash $remote_addr consistent; server 127.0.72.60:3000; } server { listen 8400; proxy_connect_timeout 50s; proxy_timeout 50s 阅读全文
posted @ 2021-10-25 15:45 China Soft 阅读(1221) 评论(0) 推荐(0)
摘要: 今天从公网的服务器连接本地内网的FTP server copy文件时,系统老是提示227 Entering Passive Mode (xxx,xxx,,xxx,xxx,x),很是奇怪,于是上网找资料仔细研究了一下,原来FTP有两种工作模式,PORT模式和PASV模式. 在主动模式下,FTP客户端随 阅读全文
posted @ 2021-10-25 15:42 China Soft 阅读(4581) 评论(0) 推荐(0)
摘要: windows nginx TCP代理 负载均衡 必须是 nginx-1.9.0 以上版本(包括1.9.0)。该版本之后,增加了 stream module,可以实现该功能。 下载地址:http://nginx.org/download/nginx-1.9.9.zip http://nginx.or 阅读全文
posted @ 2021-10-25 09:34 China Soft 阅读(388) 评论(0) 推荐(0)
摘要: nginx1.9之后直接使用Stream配置就可以了,当然需要先安装stream模块 1.nginx 增加tcp ./configure --with-stream --with-pcre=../pcre-8.38 ./configure --with-stream --without-http_r 阅读全文
posted @ 2021-10-25 09:29 China Soft 阅读(541) 评论(0) 推荐(0)
上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 125 下一页