亿级流量电商详情页系统实战-31.使用nginx+lua开发hello world

1.工程化的nginx+lua项目结构

hello
    hello.conf     
    lua              
      hello.lua
    lualib            
      *.lua
      *.so

2.配置nginx.conf

# vi /usr/servers/nginx/conf/nginx.conf

worker_processes  2;  

error_log  logs/error.log;  

events {  
    worker_connections  1024;  
}  

http {  
    include       mime.types;  
    default_type  text/html;  
  
    lua_package_path "/usr/servers/lualib/?.lua;;";  
    lua_package_cpath "/usr/servers/lualib/?.so;;"; 
    include /usr/hello/hello.conf;  
}  

3.配置hello.conf

#mkdir -p /usr/hello
#vi /usr/hello/hello.conf

server {  
    listen       80;  
    server_name  _;  
  
    location /lua {  
        default_type 'text/html';  
        lua_code_cache off;  
        content_by_lua_file /usr/hello/lua/hello.lua;  
    }  
}  

# mkdir -p /usr/hello/lua
# vi /usr/hello/lua/hello.lua
ngx.say("hello world"); 

4.验证配置是否正确

#/usr/servers/nginx/sbin/nginx -t

5.重新nginx加载配置

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

6.访问

http://192.168.135.136/lua
hello world

7.查看nginx日志

#tail -f /usr/servers/nginx/logs/access.log
#tail -f /usr/servers/nginx/logs/error.log
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值