nginx+lua (一)
項目工程結構
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??
?
轉載于:https://www.cnblogs.com/qingducx/p/7629405.html
總結
以上是生活随笔為你收集整理的nginx+lua (一)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 目标函数,代价函数,损失函数
- 下一篇: 【29.70%】【codeforces