apache2 安装 mod_lua 模块
2020-02-23 本文已影响0人
1UP2020
在 MX Linux 下为 apache2 安装 mod_lua 模块
1、安装 apache2
sudo apt-get install apache2
2、安装 mod_lua 模块
sudo a2enmod lua
在 apache2 的配置文件 /etc/apache2/apache2.conf 里添加如下代码:
<Files "*.lua">
SetHandler lua-script
</Files>
3、重启 apache2
service apache2 restart
4、hello world!
function handle(r)
r.content_type = "text/plain"
r:puts "<p>Hello World.</p>"
r.content_type = "text/html"
r:write "<p>I'm Lua.</p>"
end
5、禁用 mod_lua 模块
sudo a2dismod lua