码迷,mamicode.com
首页 >  
搜索关键字:transport rule    ( 2196个结果
Flask知识总结
1. 路由设置的2种方式 查看源码,route方法里,本质是执行app.add_url_rule() 因此可以这么写(主流方式): @app.route("/xxx") def index(): return "index!" 还可以这么写: def index(): return "index!" ...
分类:其他好文   时间:2020-02-03 11:53:50    阅读次数:74
防火墙 firewall iptables
firewalld FirewallD 使用服务service 和区域zone来代替 iptables 的规则rule和链chain,默认情况下,有以下的区域zone可用: drop – 丢弃所有传入的网络数据包并且无回应,只有传出网络连接可用。 block — 拒绝所有传入网络数据包并回应一条主机 ...
分类:其他好文   时间:2020-02-02 23:32:16    阅读次数:101
PAT Advanced 1041 Be Unique (20) [Hash散列]
题目 Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a nu ...
分类:其他好文   时间:2020-01-28 19:02:09    阅读次数:70
HTTP Strict Transport Security (通常简称为HSTS)
HTTP Strict Transport Security (通常简称为HSTS) 是一个安全功能,它告诉浏览器只能通过HTTPS访问当前资源, 禁止HTTP方式。 Freebuf百科:什么是Strict Transport Security? 一个网站接受一个HTTP的请求,然后跳转到HTTPS ...
分类:Web程序   时间:2020-01-27 19:08:23    阅读次数:110
PAT Advanced 1041 Be Unique (20分)
Being unique is so important to people on Mars that even their lottery is designed in a unique way. The rule of winning is simple: one bets on a numbe ...
分类:其他好文   时间:2020-01-27 15:17:12    阅读次数:55
web.config重定向时,过滤掉指定的目录重定向
<rewrite> <rules> <!-- 以下二段规则,用于优化访问路径: 将 http://www.abc.com/article/1.html 指向 http://www.abc.com/web/article/1.html --> <rule name="web文件夹路径重定义一"> <m ...
分类:Web程序   时间:2020-01-23 21:22:49    阅读次数:205
《计算机网络·自顶向下方法》第七版 课后习题与问题 答案
非官方答案,本人已尽最大努力,使结果正确,如有错误,请大佬指出 正文: 1.1节 R1 在计算机网络中,主机就是端系统 举例:PC,手机,服务器,网络电视 WEB服务器是一种端系统 R2 A protocol is a rule which describes how an activity sho ...
分类:其他好文   时间:2020-01-22 20:14:15    阅读次数:1458
sentinel控制台与应用通信原理
1,应用程序配置中的port选项用于指定在应用端启动的http server的端口,默认8719 sentinel: transport: dashboard: localhost:8080 port: 8719 2,控制台添加/编辑规则后,会push规则内容到应用端的http server 3,h ...
分类:其他好文   时间:2020-01-19 11:08:17    阅读次数:99
发送邮件
package com.njhzlh.commons.utils; import com.njhzlh.slave.modules.jobs.TalcntcJob; import com.sun.mail.util.MailSSLSocketFactory; import org.slf4j.Log ...
分类:其他好文   时间:2020-01-18 14:33:15    阅读次数:85
使用java客户端创建索引库
package com.hope.es;import org.elasticsearch.client.transport.TransportClient;import org.elasticsearch.common.settings.Settings;import org.elasticsear ...
分类:编程语言   时间:2020-01-16 21:53:46    阅读次数:74
2196条   上一页 1 ... 19 20 21 22 23 ... 220 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!