iptables -L -n iptables -A INPUT -p tcp –dport 9122 -j ACCEPTiptables -A OUTPUT -p tcp –sport 9122 -j ACCEPTiptables -A INPUT -p tcp –dport 80 -j ACCEPTiptables -A OUTPUT -p tcp –sport 80 -j ACCEPTiptables -A INPUT -p tcp –dport 443 -j ACCEPTiptables -A OUTPUT -p tcp –sport 443 -j ACCEPT iptables -A INPUT […]
Archives: 技术相关
CSS让图片垂直居中
2020-03-25 by Jinyang | No Comments | Filed in 技术相关<div style=”display:table-cell;line-height:30px;text-align:left;vertical-align:middle;font-weight:bold;color:black;”> <img style=”display: inline-block;” src=”redbar.png” height=”14px”/> <span>文字文字文字</span></div>
http/2 启用
2019-12-07 by Jinyang | No Comments | Filed in 技术相关listen 443 ssl http2 fastopen=3 reuseport 超级简单就启用了,为什么之前一直没启用呢?也不是没这个意识。
Bid History of PangXiong.com
2019-09-25 by Jinyang | No Comments | Filed in 技术相关Bid History (Bidders: 10, Bids: 43) Bidder Bid Date Time first1High Bid $750.00 Sep 24 12:49:45 nameword $700.00 Sep 24 12:49:35 first1 $650.00 Sep 24 12:48:53 nameword $600.00 Sep 24 12:48:43 first1 $550.00 Sep 24 12:48:14 nameword $500.00 Sep 24 12:48:06 first1 $480.00 Sep 24 12:47:11 nameword $460.00 Sep 24 12:47:05 first1 $440.00 Sep 24 12:46:14 nameword […]
tomcat 8.5 设置cookies 异常错误
2019-09-24 by Jinyang | No Comments | Filed in 技术相关java.lang.IllegalArgumentException: An invalid domain [.*****.com] was specified for this cookie at org.apache.tomcat.util.http.Rfc6265CookieProcessor.validateDomain(Rfc6265CookieProcessor.java:210) at org.apache.tomcat.util.http.Rfc6265CookieProcessor.generateHeader(Rfc6265CookieProcessor.java:145) at org.apache.catalina.connector.Response.generateCookieString(Response.java:981) at org.apache.catalina.connector.Response.addCookie(Response.java:929) at org.apache.catalina.connector.ResponseFacade.addCookie(ResponseFacade.java:386) at javax.servlet.http.HttpServletResponseWrapper.addCookie(HttpServletResponseWrapper.java:58) at javax.servlet.http.HttpServletResponseWrapper.addCookie(HttpServletResponseWrapper.java:58) 修改 conf目录下的 content.xml ,添加以下语句 <!– 添加代码 –> <CookieProcessor className=”org.apache.tomcat.util.http.LegacyCookieProcessor”/>
simple obfs permission error
2019-05-25 by Jinyang | No Comments | Filed in 技术相关使用低端口(小于1000的端口)时因为权限不足而导致出现错误,执行以下语句可解决: setcap cap_net_bind_service+ep /usr/local/bin/obfs-server
ajax同步记录页面点击日志
2019-05-18 by Jinyang | No Comments | Filed in 技术相关原本网站整体是有一个日志记录系统,但是对于导航到站外的页面就没办法统计具体的跳出路径。 用一个网站中转跳转URL来代替直接访问原始链接是个折中的办法,但是每次新增链接都需要先转化一下。 刚好看到<a 标签是先执行onclick事件然后再执行href动作 ,就简单的用onclick实现了个ajax的记录点击的方法。 测试阶段没发现异常,因为本地执行太快。在生产上发现实际点击量和记录下来的点击量存在不少的差异,分析页面请求发现onclick触发的ajax请求状态是被取消状态,想了下应该是页面已经跳转走了 所以浏览器就主动取消了上一个页面发起的请求。 把ajax请求调整为同步,解决上述问题: async: false 把页面调转请求方在ajax的响应方法中做 window.location.href 的跳转也可以达到一样的效果,但是js跳转对浏览器或搜索引擎不友好 。// 是不是现在的程序员写代码都不用考虑搜索引擎友好性了? 本来我影响 a标签是不能没有href属性的 但是看到中文论坛里好多都说可以没有…
证书链严格一致
2019-01-03 by Jinyang | No Comments | Filed in 技术相关发现中间证书错了, GeoTrust RSA CA 2018 搞成了 EV 证书 。
nginx tomcat springmvc上传文件报错
2019-01-01 by Jinyang | No Comments | Filed in 技术相关1. nginx 2. tomcat 3. springmvc <!– SpringMVC上传文件时,需要配置MultipartResolver处理器 –> <bean id=”multipartResolver” class=”org.springframework.web.multipart.commons. CommonsMultipartResolver”> <property name=”defaultEncoding” value=”UTF-8″/> <!– 指定所上传文件的总大小不能超过200KB。注意maxUploadSize属性的限制不是针对单个文件,而是所有文件的容量之和 –> <property name=”maxUploadSize” value=”200000″/> <!–resolveLazily属性启用是为了推迟文件解析,以便在UploadController 中捕获文件大小异常–> <property name=”resolveLazily” value=”true”/> </bean> maxUploadSize 调整为-1 , 不限制