作者: 毛狐狸

668 篇文章

OKHTTP 错误CLEARTEXT communication not supported
from--https://blog.csdn.net/xyx2999/article/details/83987062 测试机android9.0的pixel2, 开发用的android api28, com.zhy:okhttputils:2.6.2 服务器用的http而非https 按照https://blog.csdn.net/xyx2999/article/details/82984501进行了配置,连接服务器报错 CLEARTEXT communication not supported: [ConnectionSpec(cipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA…
nsx.conf中ssl_ciphers行的含义
from--https://www.jb51.cc/nginx/435213.html   Nginx.conf文件中以下行的含义是什么?   ssl_ciphers HIGH:!aNULL:!MD5; 我知道ssl密码正在指定用于保护服务器通信的算法,我假设是!aNULL和!MD5指定不允许使用这些密码进行通信,但我不知道HIGH:指定什么. 最佳答案 HIGH,LOW,EXPORT等是一种包含一系列密码的宏.要获得实际的密码,请使用openssl ciphers命令,即    $openssl ciphers -V 'HIGH:!aNULL:!MD5' 0xC0,0x30 - ECDHE-RSA-AES256-GCM-SHA384 TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM…
thumbnail
Network booting detect BIOS vs UEFI
from--https://forum.openwrt.org/t/network-booting-detect-bios-vs-uefi/9952   For Developers Dec 2017 1 / 4 Dec 2017 Dec 2017 akostadinov 2 Dec '17 Hi, I see some very nice fedora documentation 11 about automatically feeding BIOS and UEFI clients with the correct file: Namely? # refer to RFC4758 for possible arch option values option arch code 93 = unsigned integer 16;…
thumbnail
Manual EVC-like per VM configuration
from--http://www.michaelm.info/blog/?p=1393 Introduction While working in a lab environment recently I wanted to vMotion a VM between two ESXi hosts. The vMotion failed, which was not entirely unexpected, due to CPU incompatibilities. These particular ESXi hosts are not in a vSphere cluster so enabling EVC (Enhanced vMotion Compatibility), which would resolve the issue, is…
Manjaro Gnome Fcitx5-rime,在Firefox,Vscode不能输入中文的解决办法
from--https://segmentfault.com/a/1190000038921302   Manjaro rolling Gonme版本是 3.38.2 安装Fcitx5的操作过程 sudo pacman -S fcitx5-rime fcitx5-configtool fcitx5-gtk fcitx5-qt fcitx5-material-color 安装完成后发现除了在系统界面和系统应用还有终端可以输入中文,Firefox,Vscode都不能正常切换。 根据Fcitx4的安装编辑配置文件 ~/.xprofile export GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" 重启后也是一样,百度、谷歌都不能解决,…
thumbnail
理解caddy “ auto_https”以及为什么禁用它仍然可以使用HTTPS而不是HTTP
from--https://caddy.community/t/making-sense-of-auto-https-and-why-disabling-it-still-serves-https-instead-of-http/9761 维基 2020年9月 1/2 2020年9月 Oct '22 偏光片布伦南·金尼 Sep '20 当你的 网站地址 17 遵守要求 自动HTTPS激活 78, Caddy隐式侦听HTTPS端口(默认443 )。 可以使用Caddyfile配置自动HTTPS 全球选择 auto_https 93, 或通过 每个服务器JSON配置 30。auto_https 可以设置为以下任一条件: disable_redirects—禁用隐式HTTP- > HTTPS重定向。 off —除了删除隐式重定向之外,还禁用…
thumbnail
torch.cuda.is_available()返回false——解决办法
  from--https://blog.csdn.net/qq_46126258/article/details/112708781   (1)你的CUDA,cuDNN,torch 版本是否对应? 首先判断自己是否适合使用GPU版本的torch,打开自己的cmd输入 查看自己的 Driver Version , CUDA Version NVIDIA - smi 1 根据下图判断自己的CUDA版本是否符合要求(装的CUDA和cuDNN保持一致,版本号可以比10.2低) 如果忘记自己的CUDA、cuDNN版本号,按这个博主的办法 进入官网https://developer.nvidia.com/rdp/cudnn-download ,先注册登录,查看自己的CUDA版本号对应自己的cuDNN,如下:我的是CUDA10.1,…