然后执行命令即可一键安装新的Nginx服务: 更新nginx服务.bat 1. 注意:以上脚本都在openresty-1.21.4.3-win64的安装目录下,一键生成配置并安装服务。 resty.http的安装 我们的鉴权脚本需要http请求目标服务,但是resty.http并未集成到openresty中,所以需要我们自行下载。 下载地址为:https://github.com/ledgetech/lua-r...
nginx-service.exeinstallnginxecho"Install complate"pause 然后执行命令即可一键安装新的Nginx服务: 更新nginx服务.bat 注意:以上脚本都在openresty-1.21.4.3-win64的安装目录下,一键生成配置并安装服务。 resty.http的安装 我们的鉴权脚本需要http请求目标服务,但是resty.http并未集成到openresty中,所以需要我们自行下载。
安装依赖 luarocks install lua-resty-http 代码示例 GET请求 localhttp =require('resty.http')localhttpc = http.new()localres, err = httpc:request_uri('http://localhost/hello', { keepalive_timeout =2000-- 毫秒})ifnotresorres.statusthenngx.log(ngx.ERR,"request error#", err)returnendngx....
按照官方建议安装流程安装版本 http://openresty.org/cn/installation.html CentOS 你可以在你的 CentOS 系统中添加openresty仓库,这样就可以便于未来安装或更新我们的软件包(通过yum check-update命令)。 运行下面的命令就可以添加我们的仓库(对于 CentOS 8 或以上版本,应将下面的yum都替换成dnf): ...
resty.http的安装 我们的鉴权脚本需要http请求目标服务,但是resty.http并未集成到openresty中,所以需要我们自行下载。 下载地址为:https://github.com/ledgetech/lua-resty-http 将lib/resty目录下的三个lua脚本复制到openresty-1.21.4.3-win64\lualib\resty目录中。 这样我们就满足在lua脚本中发起http请求的基本条件...