Reputation: 145
I have to use lua with nginx. I have heard that have to compile "nginx with lua". What is meant by "compile nginx with lua"? How can I "compile" nginx with lua?
Upvotes: 1
Views: 9937
Reputation: 7020
Lua support in nginx is a module which is not compiled by default. The easiest way to obtain it is to use the OpenResty distribution. You can also compile it into your nginx like a regular nginx module.
Upvotes: 2