nginx.conf配置文件



#user  nobody;
worker_processes 1; error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info; pid logs/nginx.pid; events {
worker_connections 1024;
} http {
include mime.types;
default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; log_format log_resp_body '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'$request_time $bytes_sent $request_length "$request_body" "$resp_body"'; lua_package_path "/usr/local/openresty/lualib/?.lua;;"; #lua 模块
lua_package_cpath "/usr/local/openresty/lualib/?.so;;"; #c模块 sendfile on;
#tcp_nopush on; #keepalive_timeout 0;
keepalive_timeout 65; server_tokens off; #gzip on; # lua
#lua_shared_dict limit 10m;
#lua_package_path "/usr/local/openresty/nginx/conf/waf/?.lua";
#init_by_lua_file "/usr/local/openresty/nginx/conf/waf/init.lua";
#access_by_lua_file "/usr/local/openresty/nginx/conf/waf/access.lua"; server {
listen 80;
server_name 192.168.0.174; #charset koi8-r; access_log logs/host.access.log log_resp_body; lua_need_request_body on; set $resp_body ""; body_filter_by_lua '
local resp_body = string.sub(ngx.arg[1], 1, 1000)
ngx.ctx.buffered = (ngx.ctx.buffered or "") .. resp_body
if ngx.arg[2] then
ngx.var.resp_body = ngx.ctx.buffered
end
'; location / {
root html;
index index.html index.htm;
} location =/hello {
default_type 'text/plain';
content_by_lua 'ngx.say("欢迎使用Lua")';
} location /lua {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test.lua;
} location /lua_var {
default_type 'text/plain';
content_by_lua_block {
ngx.say(ngx.var.arg_b)
}
} location /lua_request {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_request.lua;
} location /lua_response {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_response.lua;
} location = /lua_log{
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_log.lua;
} location /lua_sum {
internal;
content_by_lua_block {
local args = ngx.req.get_uri_args()
ngx.say(tonumber(args.a) + tonumber(args.b))
}
} location = /lua_sum_test {
content_by_lua_block {
local res = ngx.location.capture("/lua_sum", {args={a=3, b=8}})
ngx.say("status:", res.status, " response:", res.body)
}
} location /lua_redirect {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/lua_redirect.lua;
} location = /favicon.ico {
log_not_found off;
access_log off;
} location ~ /lua_cjson {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test_cjson.lua;
} location /lua_mysql {
default_type 'text/html';
content_by_lua_file /usr/local/openresty/nginx/conf/lua_conf/test_mysql.lua;
} #error_page 404 /404.html; # redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
} # proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#} # deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
} # another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias; # location / {
# root html;
# index index.html index.htm;
# }
#} # HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost; # ssl_certificate cert.pem;
# ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on; # location / {
# root html;
# index index.html index.htm;
# }
#} }

test_mysql.lua文件

--[[
说明:
1.传递单个参数进行查询
2.实际使用需要修改数据库连接信息,查询表的信息
3.操作流程大致是获取传递过来的参数,连接数据库,构造查询sql,然后以json格式返回查询的结果
--]] -- 引用外部lua文件模块
local mysql = require("resty.mysql")
local cjson = require("cjson") local db, err = mysql:new()
if not db then
ngx.say("nfailed to instantiate mysql: ", err)
return
end --设置数据库连接超时时间,1 sec
db:set_timeout(1000) local props = {
host = "192.168.0.254",
port = 3306,
database = "hkd",
user = "hkd",
password = "Hkd123456;",
charset = "utf8",
max_packet_size = 1024 * 1024,
} local ok, err, errcode, sqlstate = db:connect(props) if not ok then
ngx.say("failed to connect: ", err, ": ", errcode, " ", sqlstate)
-- return close_db(db)
end -- ngx.say("connected to mysql.") -- 获取get参数
-- 1.链接样式:http://192.168.0.175/lua_mysql?name=111
-- 2.curl样式:curl http://192.168.0.175/lua_mysql?name=111
-- 3.postman软件:http://192.168.0.175/lua_mysql?name=111 (在Params中添加参数)
local arg = ngx.req.get_uri_args()
for k,v in pairs(arg) do
local select_sql = string.format("select * from jeecg_demo where %s=%s" ,k,v) -- 字符串格式化
res, err, errcode, sqlstate = db:query(select_sql)
if not res then
ngx.say("select error : ", err, " , errcode : ", errcode, " , sqlstate : ", sqlstate)
return close_db(db)
end
end --获取post参数
-- 1.curl样式:curl http://192.168.0.175/lua_mysql -X POST -d "name=111"
-- 2.postman软件:http://192.168.0.175/lua_mysql (在x-www-form-urlencoded中添加参数)
ngx.req.read_body() local arg = ngx.req.get_post_args()
for k,v in pairs(arg) do
-- ngx.say("[POST] key:", k, " v:", v)
local select_sql = string.format("select * from jeecg_demo where %s=%s" ,k,v) -- 字符串格式化
res, err, errcode, sqlstate = db:query(select_sql, 10)
if not res then
ngx.say("bad result: ", err, ": ", errcode, ": ", sqlstate, ".")
return
end
end -- 把查询结果包装成json返回
ngx.say("result: ", cjson.encode(res)) local ok, err = db:set_keepalive(10000, 100)
if not ok then
ngx.say("failed to set keepalive: ", err)
return
end -- 关闭数据库连接
local function close_db(db)
if not db then
return
end
db:close()
-- ngx.say("success to close db: ", err)
end close_db(db)

openresty下lualib目录结构

[root@bogon openresty]# tree lualib/
lualib/
├── cjson.so
├── librestysignal.so
├── ngx
│   ├── balancer.lua
│   ├── base64.lua
│   ├── errlog.lua
│   ├── ocsp.lua
│   ├── pipe.lua
│   ├── process.lua
│   ├── re.lua
│   ├── resp.lua
│   ├── semaphore.lua
│   ├── ssl
│   │   └── session.lua
│   └── ssl.lua
├── redis
│   └── parser.so
├── resty
│   ├── aes.lua
│   ├── core
│   │   ├── base64.lua
│   │   ├── base.lua
│   │   ├── ctx.lua
│   │   ├── exit.lua
│   │   ├── hash.lua
│   │   ├── misc.lua
│   │   ├── ndk.lua
│   │   ├── phase.lua
│   │   ├── regex.lua
│   │   ├── request.lua
│   │   ├── response.lua
│   │   ├── shdict.lua
│   │   ├── time.lua
│   │   ├── uri.lua
│   │   ├── utils.lua
│   │   ├── var.lua
│   │   └── worker.lua
│   ├── core.lua
│   ├── dns
│   │   └── resolver.lua
│   ├── limit
│   │   ├── conn.lua
│   │   ├── count.lua
│   │   ├── req.lua
│   │   └── traffic.lua
│   ├── lock.lua
│   ├── lrucache
│   │   └── pureffi.lua
│   ├── lrucache.lua
│   ├── md5.lua
│   ├── memcached.lua
│   ├── mysql.lua
│   ├── random.lua
│   ├── redis.lua
│   ├── sha1.lua
│   ├── sha224.lua
│   ├── sha256.lua
│   ├── sha384.lua
│   ├── sha512.lua
│   ├── sha.lua
│   ├── shell.lua
│   ├── signal.lua
│   ├── string.lua
│   ├── upload.lua
│   ├── upstream
│   │   └── healthcheck.lua
│   └── websocket
│   ├── client.lua
│   ├── protocol.lua
│   └── server.lua
└── tablepool.lua

浏览器给openresty连接发送参数请求,查询数据库,并返回json数据的更多相关文章

  1. 请求*.html后缀无法返回json数据的问题

    在springmvc中请求*.html不可以返回json数据. 修改web.xml,添加url拦截格式.

  2. laravel 查询数据库first()返回的数据转数组

    使用 get_object_vars()可以将他抓转为数组get_object_vars — 返回由对象属性组成的关联数组: 在laravel中其实还可以用 toArray(); json_decod ...

  3. javaweb Servlet接收Android请求,并返回json数据

    1.实现功能 (1)接收http请求 (2)获取Android客户端发送的参数对应的内容 (3)hibernate查询数据库 (4)返回json数据 2.java代码 import EntityCla ...

  4. Android系列之网络(一)----使用HttpClient发送HTTP请求(通过get方法获取数据)

    [声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...

  5. Query通过Ajax向PHP服务端发送请求并返回JSON数据

    Query通过Ajax向PHP服务端发送请求并返回JSON数据 服务端PHP读取MYSQL数据,并转换成JSON数据,传递给前端Javascript,并操作JSON数据.本文将通过实例演示了jQuer ...

  6. (一)----使用HttpClient发送HTTP请求(通过get方法获取数据)

    (一)----使用HttpClient发送HTTP请求(通过get方法获取数据) 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 “超文本传输协议”,是 ...

  7. jQuery通过Ajax向PHP服务端发送请求并返回JSON数据

    SON(JavaScript Object Notation) 是一种轻量级的数据交换格式.易于人阅读和编写,同时也易于机器解析和生成.JSON在前后台交互的过程中发挥着相当出色的作用.请接着往下看教 ...

  8. Android之网络----使用HttpClient发送HTTP请求(通过get方法获取数据)

    [正文] 一.HTTP协议初探: HTTP(Hypertext Transfer Protocol)中文 "超文本传输协议",是一种为分布式,合作式,多媒体信息系统服务,面向应用层 ...

  9. 使用jQuery解析JSON数据(由ajax发送请求到php文件处理数据返回json数据,然后解析json写入html中呈现)

    在上一篇的Struts2之ajax初析中,我们得到了comments对象的JSON数据,在本篇中,我们将使用jQuery进行数据解析. 我们先以解析上例中的comments对象的JSON数据为例,然后 ...

随机推荐

  1. CodeForces 352C Jeff and Rounding

    题意 有一个含有\(2n(n \leqslant2000)\)个实数的数列,取出\(n\)个向上取整,另\(n\)个向下取整.问取整后数列的和与原数列的和的差的绝对值. 就是说,令\(a\)为原数列, ...

  2. 第九周课程总结 & 实验报告(七)

    第九周课程总结 一.多线程 1.线程的状态 2.线程操作的相关方法 二.Java IO 1.操作文件的类---File ()基本介绍 ()使用File类操作文件 .RandomAccessFile类 ...

  3. what we regret most 国外的调查结果: 一生中最后悔的事情

    http://v.163.com/movie/2013/4/U/9/M93FDHRBE_M93FFFNU9.html 来自为知笔记(Wiz)

  4. 下载excle文件之工具

    创建万能的工具类,已备用 ExcelData.java 存放文件数据 package com.ulic.gis.dataCenter.util; import java.io.Serializable ...

  5. NOIP考前知识点整理

    前言:距离NOIP还有不到一百天(虽然NOIP没了),为了整理一下所学的内容,才有了这篇博文.本文内容无特殊说明全部来自于博主的博客,代码也都是新敲的,努力在个人的码风基础上做到尽量简洁,求资瓷. 一 ...

  6. 初始化EPT

    struct eptp_bits { unsigned memory_type :; /* 0: UC uncacheable, 6: WB writeback */ unsigned pagewal ...

  7. OpenCV学习笔记(10)——图像梯度

    学习图像梯度,图像边界等 梯度简单来说就是求导. OpenCV提供了三种不同的梯度滤波器,或者说高通滤波器:Sobel,Scharr和Lapacian.Sobel,Scharr其实就是求一阶或二阶导. ...

  8. leetcode 94二叉树的中序遍历

    递归算法C++代码: /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; ...

  9. 使用ViewPager实现广告自动轮播的效果

    package com.loaderman.viewpgerlunbodemo; import android.os.Bundle; import android.os.Handler; import ...

  10. Color色彩

    Element 为了避免视觉传达差异,使用一套特定的调色板来规定颜色,为你所搭建的产品提供一致的外观视觉感受. ¶主色 Element 主要品牌颜色是鲜艳.友好的蓝色. Blue #409EFF ¶辅 ...