IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> nginx-openresty-lua使用 -> 正文阅读

[系统运维]nginx-openresty-lua使用

以下配置均在/usr/local/openresty/nginx/conf/nginx.conf中配置,涉及到的lua脚本均创建在/usr/local/openresty/nginx/conf

1. localtion下直接写lua脚本:content_by_lua

location /lua {
   default_type text/html; #响应内容为html解析
   content_by_lua 'ngx.say("<br>hello world ! welcome to openresty!</br>")'; # content_by_lua:调用lua脚本
           
}

2. 调用lua脚本文件:content_by_lua_file

 location /lua1 {
     default_type text/html; #响应内容为html解析
     content_by_lua_file conf/001.lua; # content_by_lua_file:调用lua脚本
 }

001.lua脚本内容:

ngx.say("<br>hello world ! welcome to openresty!</br>")

3. 调用lua脚本文件:include

location /lua2 {
    default_type text/html; #响应内容为html解析
    include lua.conf; # include :调用lua脚本
}

?lua.conf脚本:

content_by_lua_file conf/002.lua; # content_by_lua_file:调用lua脚本

?002.lua脚本:

ngx.say("<br>hello world ! welcome to openresty! i am lua2</br>")

4. 调用lua脚本:content_by_lua_block

location /lua3 {
    default_type text/html; #响应内容为html解析
    content_by_lua_block {
        ngx.say("<br>hello world ! welcome to openresty! i am content_by_lua_block </br>")
    }
}

5. 直接配置在nginx.conf的server下配置:include lua1.conf;

include lua1.conf;

lua1.conf脚本:

location /lua4 {
     default_type text/html; #响应内容为html解析
     content_by_lua_file conf/003.lua;
 }

003.lua脚本:

ngx.say("<br>hello world ! welcome to openresty! i am lua4</br>")

6. nginx中uri变量获取

获取单个变量:

location /lua5 {
   default_type text/html; #响应内容为html解析
   content_by_lua_block {
      ngx.say(ngx.var.arg_username) #ngx对象中->变量->参数->_下划线为语法->username为url请求参数名
   }
}

请求:http://10.4.xx.xx/lua5?username=jllasdfasdfsadf

?获取多个变量:

006.lua脚本:

local uri_args = ngx.req.get_uri_args()

for k,v in pairs(uri_args) do
    if type(v) == "table" then
        ngx.say(k," : ",table.concat(v,","),"<br/>")   #table:lua中的表,类似于数组。如:get请求中有多个同名参数不同值的,会通过这个函数来处理
    else
        ngx.say(k," : ",v,"<br/>")
    end
end

?nginx.conf中配置:

 location /lua6 {
     default_type text/html; #响应内容为html解析
     content_by_lua_file conf/006.lua;
}

请求:http://10.4.xx.xx/lua6?username=jll&school=xxSchool&age=18&class=math&class=eglish&class=java

?7. 获取请求头的信息

007.lua脚本:

local headers = ngx.req.get_headers()
ngx.say("Host : ", headers["Host"], "<br/>")
ngx.say("user-agent : ", headers["user-agent"], "<br/>")
ngx.say("user-agent : ", headers.user_agent, "<br/>")
ngx.say("-------------------------------------------","<br/>")
for k,v in pairs(headers) do
    if type(v) == "table" then
        ngx.say(k," : ",table.concat(v,","),"<br/>")
    else
        ngx.say(k," : ",v,"<br/>")
    end
end

?nginx.conf脚本:

location /lua7 {
    default_type text/html; #响应内容为html解析
    content_by_lua_file conf/007.lua;
}

请求:http://10.4.xx.x/lua7

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 19:10:50  更:2022-03-30 19:11:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:21:37-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码