https://developer.aliyun.com/article/652884
Chrome模拟视频或音频捕获
/path/to/google/chrome --use-fake-device-for-media-stream [--use-file-for-fake-audio-capture=/apth/to/audio --use-file-for-fake-video-capture=/path/to/video]
Windows要求已数字签名的驱动程序
安装 KB3033929
32位
https://www.microsoft.com/zh-CN/download/details.aspx?id=46078
64位
https://www.microsoft.com/zh-CN/download/details.aspx?id=46148
运行命令
bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS
Microsoft Remote Desktop client for OSX
https://go.microsoft.com/fwlink/?linkid=868963
Rust lang 离线包下载列表
https://forge.rust-lang.org/infra/other-installation-methods.html#standalone-installers
Webkit内核Edge浏览器离线下载列表
https://www.microsoft.com/en-us/edge/business/download
禁用终端vim响应鼠标事件
编辑/etc/vim/vimrc,添加
set mouse=
set ttymouse=
CentOS 7无法为nginx自动续期Let’s Encript证书的解决办法
使用crontab来自动为nginx续期证书,但一直失败,命令为:
certbot --nginx renew
在 /var/log/letsencrypt/ 下的日志文件显示:
Could not find a usable ‘nginx’ binary
可能是在PATH中未找到nginx可执行程序,可以手动指定,最终命令如下:
certbot --nginx --nginx-ctl /usr/sbin/nginx renew
参考资料:
https://community.letsencrypt.org/t/certbot-cron-job-nginx-plugin-noinstallationerror/67572
Chrome 69+地址栏显示完整URL
Chrome 69-70
- 打开
chrome://flags/
- 搜索
Omnibox UI Hide Steady-State URL Scheme and Trivial Subdomains
,设置为Disabled
- 重启浏览器
Chrome 71-78
- 打开
chrome://flags/
- 搜索
Omnibox UI Hide Steady-State URL
,将结果项全部设置为Disabled
- 重启浏览器
Chrome 79+
安装名为Suspicious Site Reporter
的扩展。
使用rewrite重定向http到https
Apache httpd
RewriteEngine On
# RewriteCond %{SERVER_NAME} =www.example.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301,NE,QSA]
如Server绑定多个域名,需要针对实际请求的主机名重定向,可以把%{SERVER_NAME}
替换成%{HTTP_HOST}
。
Nginx
rewrite ^ https://$host$request_uri permanent;
也可以直接使用return
语句
return 301 https://$host$request_uri;