1. """
  2.  
  3. #user nobody;
  4. worker_processes 1;
  5.  
  6. #error_log logs/error.log;
  7. #error_log logs/error.log notice;
  8. error_log logs/error.log info;
  9.  
  10. #pid logs/nginx.pid;
  11.  
  12. events {
  13. worker_connections 1024;
  14. }
  15.  
  16. http {
  17. include mime.types;
  18. default_type application/octet-stream;
  19.  
  20. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  21. # '$status $body_bytes_sent "$http_referer" '
  22. # '"$http_user_agent" "$http_x_forwarded_for"';
  23.  
  24. #access_log logs/access.log main;
  25.  
  26. sendfile on;
  27. #tcp_nopush on;
  28.  
  29. #keepalive_timeout 0;
  30. keepalive_timeout 65;
  31.  
  32. #gzip on;
  33.  
  34. server {
  35. listen 80;
  36. server_name localhost;
  37. charset utf-8;
  38. #charset koi8-r;
  39.  
  40. #access_log logs/host.access.log main;
  41.  
  42. #location / {
  43. # root html;
  44. # index index.html index.htm;
  45. #}
  46. location /one {
  47. default_type 'text/html';
  48. content_by_lua_block {
  49. local function encodeBase64(source_str)
  50. local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
  51. local s64 = ''
  52. local str = source_str
  53.  
  54. while #str > 0 do
  55. local bytes_num = 0
  56. local buf = 0
  57.  
  58. for byte_cnt=1,3 do
  59. buf = (buf * 256)
  60. if #str > 0 then
  61. buf = buf + string.byte(str, 1, 1)
  62. str = string.sub(str, 2)
  63. bytes_num = bytes_num + 1
  64. end
  65. end
  66.  
  67. for group_cnt=1,(bytes_num+1) do
  68. local b64char = math.fmod(math.floor(buf/262144), 64) + 1
  69. s64 = s64 .. string.sub(b64chars, b64char, b64char)
  70. buf = buf * 64
  71. end
  72.  
  73. for fill_cnt=1,(3-bytes_num) do
  74. s64 = s64 .. '='
  75. end
  76. end
  77.  
  78. return s64
  79. end
  80. local salt = "78t2cs5nim6fpy"
  81. local address = "www.7893015.com"
  82. local base = encodeBase64(address)
  83. local str1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
  84. local str2 = "GsW8O7iy1FS02VEIbjwzmH3fZQUBq5T9hrl4CvgNnRMDupYAJokK+ecadtL/P6xX"
  85. ans = ""
  86. for i=1,#base do
  87. local one = string.sub(base,i,i)
  88. local num = string.find(str1,one)
  89. two = string.sub(str2,num,num)
  90. ans = ans..two
  91. end
  92. local timestamp = os.time()
  93. tmp = "d="..ans.."&t="..timestamp.."&v="..salt
  94. local rightsign = ngx.md5(tmp)
  95. local url = "/two?".."d="..ans.."&t="..timestamp.."&s="..rightsign
  96. html = string.format(
  97. [[
  98. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  99. <html><head>
  100. <meta http-equiv="refresh" content="61;url=http://www.baidu.com">
  101. <title></title>
  102. </head><body>
  103. <!--<h1>Service Temporarily Unavailable</h1>
  104. <p>The server is temporarily unable to service your
  105. request due to maintenance downtime or capacity
  106. problems. Please try again later.</p>-->
  107. <a href="" id="baidu"></a>
  108. <script type="text/javascript">
  109. baidu.href = "%s" ;
  110. //IE
  111. if(document.all) {
  112. document.getElementById("baidu").click();
  113. }
  114. //Other Browser
  115. else {
  116. var e = document.createEvent("MouseEvents");
  117. e.initEvent("click", true, true);
  118. document.getElementById("baidu").dispatchEvent(e);
  119. }
  120. </script>
  121. </body></html>
  122. ]],url
  123. )
  124. ngx.say(html)
  125. }
  126. }
  127.  
  128. location /two {
  129. default_type 'text/html';
  130. content_by_lua_block {
  131. local function decodeBase64(str64)
  132. local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
  133. local temp={}
  134. for i=1,64 do
  135. temp[string.sub(b64chars,i,i)] = i
  136. end
  137. temp['=']=0
  138. local str=""
  139. for i=1,#str64,4 do
  140. if i>#str64 then
  141. break
  142. end
  143. local data = 0
  144. local str_count=0
  145. for j=0,3 do
  146. local str1=string.sub(str64,i+j,i+j)
  147. if not temp[str1] then
  148. return
  149. end
  150. if temp[str1] < 1 then
  151. data = data * 64
  152. else
  153. data = data * 64 + temp[str1]-1
  154. str_count = str_count + 1
  155. end
  156. end
  157. for j=16,0,-8 do
  158. if str_count > 0 then
  159. str=str..string.char(math.floor(data/math.pow(2,j)))
  160. data=math.fmod(data,math.pow(2,j))
  161. str_count = str_count - 1
  162. end
  163. end
  164. end
  165. local last = tonumber(string.byte(str, string.len(str), string.len(str)))
  166. if last == 0 then
  167. str = string.sub(str, 1, string.len(str) - 1)
  168. end
  169. return str
  170. end
  171. local salt = "78t2cs5nim6fpy"
  172. local arg = ngx.req.get_uri_args()
  173. local address = arg["d"]
  174. local timestamp = arg["t"]
  175. local sign = arg["s"]
  176. if address and timestamp and value then
  177. ngx.exit(403)
  178. end
  179. tmp = "d="..address.."&t="..timestamp.."&v="..salt
  180. local rightsign = ngx.md5(tmp)
  181. if sign ~= rightsign then
  182. ngx.exit(403)
  183. end
  184. local time_out = 600
  185. local time_now = os.time()
  186. if tonumber(timestamp)+time_out<time_now then
  187. ngx.exit(403)
  188. end
  189. local str1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
  190. local str2 = "GsW8O7iy1FS02VEIbjwzmH3fZQUBq5T9hrl4CvgNnRMDupYAJokK+ecadtL/P6xX"
  191. ans = ""
  192. for i=1,#address do
  193. local one = string.sub(address,i,i)
  194. local num = string.find(str2,one)
  195. two = string.sub(str1,num,num)
  196. ans = ans..two
  197. end
  198. url = decodeBase64(ans)
  199. html = string.format(
  200. [[
  201. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  202. <html><head>
  203. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  204. <meta http-equiv="Content-Language" content="zh-cn">
  205. <style>a:hover,a:visited{color:#337FFD;} </style>
  206. <title></title></head><body>
  207. <p align="center"></p>
  208. <p align="center"><b><font style="font-size: 30pt">
  209. <script type="text/javascript">
  210. function checkurl(){
  211. window.location.href="https://%s";
  212. }
  213. </script>
  214. <br><br><br>
  215. <center>
  216.  
  217. <a id="BAIDU" href="https://www.baidu.com/?Open=normal&BaiduPartner=360&BaiduVIP=73499" title="360维护网络健康计划:浏览器安全检查通过,请点击进入。" onclick="checkurl();return false;" style="background: #077727;padding: 10px 40px;margin: 15px;color: #fff;border-radius:8px;cursor: pointer;text-decoration:none;">浏览器安全检查通过,请点击进入</a>
  218. </center>
  219. </body></html>
  220. ]],url
  221. )
  222. ngx.say(html)
  223. }
  224. }
  225. #error_page 404 /404.html;
  226.  
  227. # redirect server error pages to the static page /50x.html
  228. #
  229. error_page 500 502 503 504 /50x.html;
  230. location = /50x.html {
  231. root html;
  232. }
  233.  
  234. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  235. #
  236. #location ~ \.php$ {
  237. # proxy_pass http://127.0.0.1;
  238. #}
  239.  
  240. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  241. #
  242. #location ~ \.php$ {
  243. # root html;
  244. # fastcgi_pass 127.0.0.1:9000;
  245. # fastcgi_index index.php;
  246. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  247. # include fastcgi_params;
  248. #}
  249.  
  250. # deny access to .htaccess files, if Apache's document root
  251. # concurs with nginx's one
  252. #
  253. #location ~ /\.ht {
  254. # deny all;
  255. #}
  256. }
  257.  
  258. # another virtual host using mix of IP-, name-, and port-based configuration
  259. #
  260. #server {
  261. # listen 8000;
  262. # listen somename:8080;
  263. # server_name somename alias another.alias;
  264.  
  265. # location / {
  266. # root html;
  267. # index index.html index.htm;
  268. # }
  269. #}
  270.  
  271. # HTTPS server
  272. #
  273. #server {
  274. # listen 443 ssl;
  275. # server_name localhost;
  276.  
  277. # ssl_certificate cert.pem;
  278. # ssl_certificate_key cert.key;
  279.  
  280. # ssl_session_cache shared:SSL:1m;
  281. # ssl_session_timeout 5m;
  282.  
  283. # ssl_ciphers HIGH:!aNULL:!MD5;
  284. # ssl_prefer_server_ciphers on;
  285.  
  286. # location / {
  287. # root html;
  288. # index index.html index.htm;
  289. # }
  290. #}
  291.  
  292. }
  293. """

用 openresty 编写 lua的更多相关文章

  1. Openresty编写Lua代码一例

    1.前段时间纠结了很久,一直弄不清lua和tomcat的联系.一直认为是lua调用tomcat的接口才可使用,后面才明白过来,进入了一个误区,lua本身就是一门独立的脚本语言.在openresty里面 ...

  2. OpenResty(nginx+lua) 入门

    OpenResty 官网:http://openresty.org/ OpenResty 是一个nginx和它的各种三方模块的一个打包而成的软件平台.最重要的一点是它将lua/luajit打包了进来, ...

  3. (转)OpenResty(nginx+lua) 开发入门

    原文:https://blog.csdn.net/enweitech/article/details/78519398 OpenResty 官网:http://openresty.org/  Open ...

  4. CentOS安装OpenResty(Nginx+Lua)开发环境

    一.简介 OpenResty® 是一个基于 Nginx 与 Lua 的高性能 Web 平台,其内部集成了大量精良的 Lua 库.第三方模块以及大多数的依赖项.用于方便地搭建能够处理超高并发.扩展性极高 ...

  5. 给lnmp一键包中的nginx安装openresty的lua扩展

    lnmp一键包(https://lnmp.org)本人在使用之后发现确实好用,能帮助我们快速搭建起lnmp.lamp和lnmpa的web生产环境,因此推荐大家可以多试试.但有的朋友可能需要使用open ...

  6. 【原创】大叔问题定位分享(36)openresty(nginx+lua)中获取不到post数据,ngx.req.get_body_data返回nil

    openresty(nginx+lua)中获取不到post数据,ngx.req.get_body_data返回nil This function returns nil if the request ...

  7. 搭建OpenResty(Nginx+Lua)

    这篇文章是一个多月前写的,当时之所以搭建这个是为了最大程度上发挥Nginx的高并发效率(主要是结合lua脚本),参考的话,主要参考张开涛先生写的跟开涛学Nginx+lua系列文章,地址为:https: ...

  8. [转]使用 C 编写 Lua 模块

    Lua 作为一种小巧的语言,一般都是嵌入到 C/C++ 中作为扩展语言,但是也可以作为独立的脚本语言使用,并且可以使用 C/C++ 编写扩展模块.在参考资料 [1] 中有怎样用 C/C++ 编写模块的 ...

  9. openresty安装lua和nginx相关

    server{ listen ; server_name a.com; index index.php; root /usr/share/nginx/html; location / { if (!- ...

随机推荐

  1. GIT-版本管理-初阶使用

    目前我用的比较多的git指令 git clone -b [branch-name]: 拉取远程指定分支代码 git status: 查看工作区修改状态 在将修改添加进暂存区的时候需要git add . ...

  2. Vamware没有卸载干净,导致无法重装,无法删除VMware旧版本,请与技术小组联系

    原因:注册表没有清理干净!!! 问题:把文件夹清理了n遍,却无法重装VMware,报错如标题. 原因:相关注册表没删完. 解决办法: - 1.创建一个.txt文本: - 2.将下面的内容复制到.txt ...

  3. spring cloud 知识总结

    ### 单体应用存在的问题 - 随着业务的发展,开发变得越来越复杂.- 修改.新增某个功能,需要对整个系统进行测试.重新部署.- 一个模块出现问题,很可能导致整个系统崩溃.- 多个开发团队同时对数据进 ...

  4. com 组件的本知识

    (今日看到网络上关于"COM中GUID......"文章,写的好,故记录之.)当初微软设计com规范的时候,有两种选择来保证用户的设计的com组件可以全球唯一:第一种是采用和Int ...

  5. git新建分支及提交代码到分支

    二.创建分支并提交代码到分支 上述添加成员的方式非常简单,但是如果说每一个小组成员都可以对仓库push内容,就涉及到一个代码的安全和冲突问题了,当多个成员同时在线编辑时容易出现冲突,假设A的代码是有问 ...

  6. 解析和遍历一个HTML文档

    如何解析一个HTML文档: String html = "<html><head><title>First parse</title>< ...

  7. Navicat查询出的数据有时候不能更改?

    Navicate查出数据只读,一种情况是查询没带出主键(唯一索引),无法更新数据

  8. Tomcat中的一些问题

    问题: 一闪而过,解决办法: 用记事本打开startup.bat文件,在最下面添加pause 再次运行,发现问题 CATALINA_HOME是TOMCAT安装路径的别名, 计算机>属性>环 ...

  9. 一、Rabbitmq的简单介绍

    以下只是本人从零学习过程的整理 部分内容参考地址:https://www.cnblogs.com/ysocean/p/9240877.html 1.RabbitMQ的概念 RabbitMQ是实现了高级 ...

  10. Linux制作Raid

    1.启动服务器 2.在服务器出现提示的时候,根据提示进入Raid管理界面(Ctrl + R),Raid管理界面如下: 3.删除原有的Raid 4.新建Raid 第一步:进入新建Raid的界面 第二步: ...