码迷,mamicode.com
首页 > 其他好文 > 详细

nginx+lua (一)

时间:2017-10-05 17:18:15      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:reload   oca   查看   nbsp   lua   location   name   listen   bin   

项目工程结构

hello

    hello.conf     

    lua              

      hello.lua

    lualib            

      *.lua

      *.so

 

新建hello.conf

server {  

    listen       80;  

    server_name  _;  

 

    location /lua {  

        default_type ‘text/html‘;  

        lua_code_cache off;  

        content_by_lua_file /usr/example/lua/test.lua;  

    }  

}  

新建 test.lua脚本

ngx.say("hello world"); (测试脚本)

增加配置

/usr/servers/nginx/conf/nginx.conf

在http中 include /usr/hello/hello.conf;  

 

 

查看异常日志

tail -f /usr/servers/nginx/logs/error.log

重新nginx加载配置

/usr/servers/nginx/sbin/nginx -s reload  

 

nginx+lua (一)

标签:reload   oca   查看   nbsp   lua   location   name   listen   bin   

原文地址:http://www.cnblogs.com/qingducx/p/7629405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!