摘要: /home/bby/nginx-1.26.0/modules/ngx_http_geoip2_module-3.4 ./configure --prefix=/usr/local/nginx \--with-compat \--with-debug \--with-pcre-jit \--with- 阅读全文
posted @ 2024-08-02 17:55 fieldtianye 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Nginx location配置 参考: Nginx配置文件中location介绍 https://blog.csdn.net/m0_74412260/article/details/131030731 Nginx location配置 https://zhuanlan.zhihu.com/p/37 阅读全文
posted @ 2024-05-22 13:14 fieldtianye 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Python模拟数据生成库Faker PYPI 官网 https://pypi.org/project/Faker/ Github官网 https://github.com/joke2k/faker 文档 https://faker.readthedocs.io/en/master/ 中文参考: P 阅读全文
posted @ 2024-05-17 12:26 fieldtianye 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Nginx配置文件 nginx.conf 中文详解 参考: Nginx 入门指南 https://www.w3cschool.cn/nginx/ ######Nginx配置文件nginx.conf中文详解##### #定义Nginx运行的用户和用户组 user www www; #nginx进程数, 阅读全文
posted @ 2024-05-07 17:39 fieldtianye 阅读(14) 评论(0) 推荐(0) 编辑
摘要: SSL 免费证书 参考: 查看证书时间的方式 https://blog.csdn.net/qq_38978882/article/details/133773102 用 Let's encrpyt 生成 SSL 证书 更新:为 NGINX 配置免费的 Let’s Encrypt SSL/TLS 证书 阅读全文
posted @ 2024-05-07 15:44 fieldtianye 阅读(52) 评论(0) 推荐(0) 编辑
摘要: Nginx 源码安装 Nginx官网:https://nginx.org 参考: Nginx配置常用参数梳理 https://www.jb51.net/server/285538k8k.htm nginx配置参数详解 https://blog.csdn.net/u013286192/article/ 阅读全文
posted @ 2024-04-26 17:09 fieldtianye 阅读(49) 评论(0) 推荐(0) 编辑
摘要: Nginx模块安装配置 参考 查看nginx安装了哪些模块 https://blog.51cto.com/u_16213645/7981395 nginx查看默认安装的模块 https://www.kancloud.cn/vim26/v1/717246 Nginx限流配置--limit_req和li 阅读全文
posted @ 2024-04-10 16:14 fieldtianye 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 参考: 公网环境下使用VNC远程连接Ubuntu系统桌面 https://blog.csdn.net/qq_63320529/article/details/134506820 apt 更新一下 sudo apt update sudo apt upgrade 使用 xfce 界面 安装 light 阅读全文
posted @ 2024-03-29 18:12 fieldtianye 阅读(24) 评论(0) 推荐(0) 编辑
摘要: HTTPS证书生成和配置 1:创建服务器私钥 openssl genrsa -des3 -out server.key 2048 输入密码:password 2:创建签名请求的证书(CSR) openssl req -new -key server.key -out server.csr 3:加载S 阅读全文
posted @ 2024-03-10 11:48 fieldtianye 阅读(402) 评论(0) 推荐(0) 编辑
摘要: Golang 执行shell命令 参考: go语言执行外部程序-标准库os/exec使用举例 https://blog.csdn.net/hsy12342611/article/details/131478879 go语言执行系统命令 - 标准库os/exec详解 https://blog.csdn 阅读全文
posted @ 2024-03-07 15:29 fieldtianye 阅读(414) 评论(0) 推荐(0) 编辑