ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    git SSL Certificate problem- unable to get local issuer certificate

    Dec 16, 20212 min read

    Open Git Bash and run the command if you want to completely disable SSL verification.

    git config --global http.sslVerify false
    

    Note: This solution opens you to attacks like man-in-the-middle attacks. Therefore turn on verification again as soon as possible:

    git config --global http.sslVerify true
    

    相关文章

    axios post 请求封装

    该代码定义了一个用于封装axios的post请求方法,支持根据参数选择JSON或FormData格式的请求头。

    前端开发必备:深入理解HTTP和HTTPS协议

    前端开发中,深入理解HTTP和HTTPS协议对于确保网站安全性和性能至关重要。

    什么是 Azure 的订阅和资源组?

    Azure 订阅是用于管理 Azure 服务的逻辑容器,而资源组则是用于组织和管理相关 Azure 资源的逻辑容器。

    想润了,但是英语不太行,有什么学英语的软件吗,背单词之类的

    建议通过正规途径学习英语,利用免费在线资源和多种学习方式提高英语水平。

    nginx 的跨域配置

    通过在 nginx.conf 中使用 add_header 指令设置跨域访问权限,并重启 nginx 服务器,可以实现对特定域名、HTTP 方法和头部信息的跨域访问。