ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Centos 安装Nginx

    Jun 29, 20222 min read
    sudo yum install epel-release
    sudo yum install nginx
    sudo systemctl start nginx
    sudo systemctl status nginx
    sudo firewall-cmd --permanent --zone=public --add-service=http
    sudo firewall-cmd --permanent --zone=public --add-service=https
    sudo firewall-cmd --reload
    
    sudo systemctl enable nginx
    
    

    相关文章

    Go Gin 如何处理TLS 配置和使用 443 端口?

    在Go中处理TLS配置并使用443端口的步骤包括生成证书和私钥、编写Go代码、创建处理程序函数、启动HTTPS服务器以及运行代码。

    React 示例项目列表

    本文介绍了即将在实战篇中使用的示例项目、Node.js版本推荐、包管理工具Yarn的使用、第三方依赖版本信息,以及提供了一些拓展学习资料链接。

    在 Docker 构建过程中使用清华源PIP 源

    在Docker构建过程中,通过在Dockerfile中添加命令来设置使用清华源的PIP源,可以加速软件包下载,提高构建效率。

    Nextjs 获取数据的方式

    Next.js提供了四种数据获取API(getStaticProps、getStaticPaths、getServerSideProps、已弃用的getInitialProps),用于在构建时或服务器端动态生成页面内容,以优化性能和用户体验。

    HBuilderX uni-app 打包发行H5配置?

    在 HBuilderX 中打包发行 uni-app H5 的步骤包括打开项目、选择发行菜单、设置发布选项、配置高级设置,最后点击发布并检查发布目录。