>  기사  >  운영 및 유지보수  >  Windows에서 openresty 소개 및 사용 공유

Windows에서 openresty 소개 및 사용 공유

零下一度
零下一度원래의
2017-07-19 09:24:575694검색

OpenResty 표준 Nginx 코어, 일반적으로 사용되는 많은 타사 모듈 및 대부분의 종속성을 패키지합니다.

nginx 타사 라이브러리가 필요한 경우 설치 문제를 많이 줄일 수 있는 OpenResty를 고려해 볼 수 있습니다. OpenResty는 기본적으로 일반적으로 사용되는 nginx 타사 라이브러리를 설치합니다.

OpenResty 설치:

nginx의 다시 쓰기 모듈과 같은 필수 플러그인 설치:

apt-get install libreadline-dev libpcre3-dev libssl-dev perl build-essential

시나리오: 반환 값에 대한 요구 사항이 있습니다. , 인터페이스 차폐 필드 또는 일부 비즈니스 검증 등을 수행합니다.

1. Windows용 openresty를 직접 다운로드하고 압축을 해제하면 Windows에서 Lua를 사용하여 개발 환경이 완성됩니다.

2. 구성:

a. .conf 다음 코드:

include     mime.types;
default_type  application/octet-stream;
lua_package_path "/lualib/?.lua;;";  #lua 模块  
lua_package_cpath "/lualib/?.so;;";  #c模块   
include lua.conf;   #导入自定义lua配置文件
resolver 8.8.8.8;

b Lua의 라우팅 구성을 저장하기 위해 nginx.conf와 동일한 디렉터리에 lua.conf 파일을 만듭니다.

#lua.conf  
server {  
	charset utf-8; #设置编码
    listen       80;  
    server_name  _;  
	location /user {  
		default_type 'text/html';  
		content_by_lua_file lua/api/userController.lua; #相对于nginx安装目录  
	} 
}    

c 아래의 lua 폴더에 "api" 폴더를 만듭니다. ngx 루트 디렉터리에 userController.lua 처리 파일 클래스를 추가합니다. 예를 들어 코드는 다음과 같습니다.

local request_method = ngx.var.request_method
local args = nil

--1、获取参数的值 获取前端提交参数
if "GET" == request_method then
    args = ngx.req.get_uri_args()
elseif "POST" == request_method then
    ngx.req.read_body()
    args = ngx.req.get_post_args()
end

--2、组合url请求Get/Post请求 并获取参数  
local http = require "resty.http"  
local httpc = http.new()  
local url = "http://xxxxx/user/login/"..args["userid"].."/"..args["pass"]
local resStr --响应结果  
local res, err = httpc:request_uri(url, {  
    method = "GET",  
    --args = str,  
     body = "a=1&b=2",
    headers = {  
       ["Content-Type"] = "application/json",  
    }  
})  

--3、开始重新组合参数 例子 可根据返回的JSON自己处理
local cjson = require "cjson"
local sampleJson = [[{"age":"23","testArray":{"array":[8,9,11,14,25]},"Himi":"himigame.com"}]];
--解析json字符串
local data = cjson.decode(sampleJson);
--打印json字符串中的age字段
ngx.say(data["age"]);
--打印数组中的第一个值(lua默认是从0开始计数)
ngx.say(data["testArray"]["array"][1]);  


--4、打印输出新返回值
ngx.say(res.body)

위 내용은 Windows에서 openresty 소개 및 사용 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.