详解LUA Web开发服务器配置学习教程
LUA Web开发服务器配置学习教程是本文要介绍的内容,主要是来学习lua中web开发的内容,有两种方式,一种是apache2.3以上会内置的lua module,大家可以下载apache httpd 2.3.8的代码,在modules目录下有lua这个目录。
另外一种是今天要介绍的,使用wsapi方式。
我们使用ubuntu服务器,先确保lua5.14以及apache2都安装成功。
然后
sudo apt-get install apache2-mpm-worker liblua5.1-0-dev luarocks sudo apt-get install libfcgi-dev libapache2-mod-fcgid sudo luarocks install wsapi-fcgi
然后修改.htaccess或者httpd.conf或者你的vhost配置,添加下面部分。
Options ExecCGI AddHandler fcgid-script .lua FCGIWrapper /usr/local/lib/luarocks/bin/wsapi.fcgi .lua
要注意的是wsapi.fcgi也许是在不同目录下,用find自己找吧。
在var/www下你的站点中新建一个luacgi目录,然后建立两个文件。
launcher.fcgi: #!/usr/bin/env lua require "wsapi.fastcgi" require "hello" wsapi.fastcgi.run(hello.run) index.lua: module(…, package.seeall) function run(wsapi_env) local headers = { ["Content-type"] = "text/html" } local function hello_text() coroutine.yield("<html><body>") coroutine.yield("<p>Hello Wsapi!</p>") coroutine.yield("<p>PATH_INFO: " .. wsapi_env.PATH_INFO .. "</p>") coroutine.yield("<p>SCRIPT_NAME: " .. wsapi_env.SCRIPT_NAME .. "</p>") coroutine.yield("</body></html>") end return 200, headers, coroutine.wrap(hello_text) end
然后用chown –R www-data:www-data luacgi修改目录owner。
这时候应该就能用xxx.com/luacgi/index.lua访问了。
相关推荐
chenhaotao 2020-11-13
liaochaowu 2020-11-12
sjcheck 2020-11-10
huangliuyu00 2020-10-29
PncLogon 2020-09-24
杏仁技术站 2020-09-18
fubrty 2020-09-08
颤抖吧腿子 2020-09-04
liangjielaoshi 2020-08-19
viewerlin 2020-08-19
hfuturer 2020-08-16
Lzs 2020-08-14
一青年 2020-08-13
SHINESUNNY 2020-08-11
lantingyue 2020-07-30
RainyX 2020-07-26
adentheima 2020-07-25
JessePinkmen 2020-07-19