上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: Nginx write重写 参考文章: https://zhuanlan.zhihu.com/p/629012092 例子:rewrite ^(.*) https://www.bbb.com$1; 解释:匹配任意字符开头的**路径**,注意是路径,然后.*是将路径后的值作为变量让$1调用 用户访问的 阅读全文
posted @ 2025-05-19 20:02 wewnehwhe 阅读(8) 评论(0) 推荐(0)
摘要: 什么是LNMP 参考:https://zhuanlan.zhihu.com/p/669098739 LNMP:Linux,Nginx,Mysql,PHP组合的网站服务器架构 LNMP配置conf: 访问PHP页面: PHP连MySQL网页: PHP连MySQL效果: FastCGI CGI(Como 阅读全文
posted @ 2025-05-19 18:55 wewnehwhe 阅读(22) 评论(0) 推荐(0)
摘要: https配置步骤 1.生成密钥文件:使用命令:openssl genrsa -idea -out server.key 2048 创建密钥文件,设置密码为1234 生成的密钥文件内部: 2.⽣成使⽤签名请求证书和私钥⽣成⾃签证书:使用命令:penssl req -days 36500 -x509 阅读全文
posted @ 2025-05-19 16:13 wewnehwhe 阅读(12) 评论(0) 推荐(0)
摘要: 初学shell脚本遇到的初级错误,深入理解记忆shell语法 阅读全文
posted @ 2025-05-18 13:40 wewnehwhe 阅读(14) 评论(0) 推荐(0)
摘要: cat>会覆盖原文件,cat>>不会覆盖原文件,会在文件末尾追加 阅读全文
posted @ 2025-05-14 21:35 wewnehwhe 阅读(17) 评论(0) 推荐(0)
摘要: 1.查询及帮助命令 man命令 * 用来查询命令的用法 例如:man ls就是查询出ls命令的所有用法![](https://img2024.cnblogs.com/blog/3640333/202505/3640333-20250513093402428-373034337.png) help命令 阅读全文
posted @ 2025-05-14 19:06 wewnehwhe 阅读(14) 评论(0) 推荐(0)
摘要: 1.什么是静态资源 2.cdn架构: 内容分发网络(Content Delivery Network,CDN)是一种网络架构,旨在提高用户对互联网上内容的访问速度和性能。CDN通过在全球各地部署大量的服务器节点,将内容缓存到离用户更近的服务器上,从而减少内容传输的距离,提高访问速度和响应时间。当用户 阅读全文
posted @ 2025-05-13 23:49 wewnehwhe 阅读(21) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/lph159/article/details/142880937?fromshare=blogdetail&sharetype=blogdetail&sharerId=142880937&sharerefer=PC&sharesource=weixin_5 阅读全文
posted @ 2025-05-13 09:44 wewnehwhe 阅读(16) 评论(0) 推荐(0)
摘要: 1.nginx日志配置 nginx日志配置是在nginx配置文件/etc/nginx/nginx.conf里面修改 2.nginx状态监控 参考文章:https://blog.csdn.net/hanjinjuan/article/details/119733953?fromshare=blogde 阅读全文
posted @ 2025-05-12 22:22 wewnehwhe 阅读(15) 评论(0) 推荐(0)
摘要: 一、nginx安装三种方式:1、yum安装 2、编译安装 3、二进制安装 二、nginx运维 1.服务管理 启动 /usr/local/nginx/sbin/nginx (判断nginx服务是否启动的3个方式) 修改nginx配置后重新加载 /usr/local/nginx/sbin/nginx - 阅读全文
posted @ 2025-05-12 19:17 wewnehwhe 阅读(8) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 下一页