Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 229 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 229 Bytes

lua-resty-helloworld

server {
  listen 80;
  #lua_code_cache off;

  location /helloworld {
    default_type text/html;
    content_by_lua_file "<%= @lua_path %>/lua-resty-helloworld/lib/resty/helloworld.lua";
  }

}