firewalld打开关闭防火墙端口用法总结
firewalld打开关闭防火墙端口用法总结 一、firewalld的基本使用 启动: systemctl s…
firewalld打开关闭防火墙端口用法总结 一、firewalld的基本使用 启动: systemctl s…
检查网站是否支持http2
1 2 3 4 5 6 7 8 9 10 11 12 13 |
(function(){ // 保证这个方法只在支持loadTimes的chrome浏览器下执行 if(window.chrome && typeof chrome.loadTimes === 'function') { var loadTimes = window.chrome.loadTimes(); var spdy = loadTimes.wasFetchedViaSpdy; var info = loadTimes.npnNegotiatedProtocol || loadTimes.connectionInfo; // 就以 「h2」作为判断标识 if(spdy && /^h2/i.test(info)) { return console.info('本站点使用了HTTP/2'); } } console.warn('本站点没有使用HTTP/2'); })(); |
proxmox无订阅更新和绑定证书,适用于proxmox4 proxmox无订阅更新: 一、Proxmox V…
pymongo 是在 python 中操作 mongodb 的一个包,使用方法跟 mongodb 的 shel…
在系统中,往往需要进行iptables规则的编写,但是当系统重新启动后这些规则则没有了? 一、解决这样的问题也…
ubuntu没有网卡,ubuntu添加网卡,Ubuntu只有io设备,Ubuntu没有网卡设备 一、列出网卡名…
方法一
1 2 3 4 5 6 |
RewriteEngine On RewriteBase / RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://yusky.me/$1 [R=301,L] #这样跳转的好处是独立IP主机也支持,访问ip能自动跳转到https |
方法二 [crayon-6803c6…
wordpres在lamp下开启https(ssl)的记录, wordpress在apache下开启https…
百度图片真实地址解密,百度图片搜索真实地址解密,图片爬虫地址解密 Python版示例代码: [crayon-6…