排序
Linux – NGINX编译提示需要LuaJIT 2.x.的解决办法
报错代码: ./configure: error: unsupported LuaJIT version; ngx_http_lua_module requires LuaJIT 2.x. 解决方法: 先查看是否已安装lua-devel,直接执行安装即可 CentOS: yum install lua-d...
Ubuntu22.04编译安装nginx时报错error: ‘ENGINE_free’ is deprecated: Since OpenSSL 3.0
编译时添加编译参数即可 ./configure --with-cc-opt='-Wno-error -Wno-deprecated-declarations'
docker – 安装nginx+php7.4+mysql5.7
记一次折腾docker的LNMP环境 拉取所有需要的软件库 其中php拉取版本为7.4版本 mysql拉取5.7版本 docker pull nginx docker pull php:7.4-fpm docker pull mysql:5.7 创建好本地目录,用作存放配...
Windows部署WNMP
系统需要安装好vc++2013 2019运行库 下载地址: https://support.microsoft.com/zh-cn/topic/%E6%9C%80%E6%96%B0%E6%94%AF%E6%8C%81%E7%9A%84-visual-c-%E4%B8%8B%E8%BD%BD-2647da03-1eea-4433-...
Linux – Nginx的安装与配置
系统软件源直接安装 使用命令一键安装 Centos: yum install nginx -y Ubuntu: apt update apt install -y nginx nginx配置文件默认保存在 /etc/nginx 其中 conf.d 的子文件夹中会有一个默认战...