我目前正在尝试了解和查找使用 YAWS 的网页案例研究。除了源附带的默认页面外,任何人都知道我能找到的任何示例页面吗?
谢谢,
使用 Erlang 构建 Web 应用程序可能是一本值得阅读的好书,但它假定读者已经对设置环境和基本的 yaws 想法有很多了解。
因此,您可以从http://yaws.hyber.org/simple.yaws开始。
我总结了一些偏航的基本原理如下。我在 Ubuntu 上运行 yaws。
sudo apt-get install yaws
并将sudo apt-get install erlang
安装 erlang 和 yawk。
/etc/yaws/yaws.conf
是主要的配置文件。它会加载conf.d/localhost.conf
,因此您可以像 Apache 或 Nginx 一样添加自己的配置。这是一个使用 8083 端口的示例。
<server localhost>
port = 8083
listen = 0.0.0.0
docroot = /home/ubuntu/webapp/yaws/simple
</server>
在 Ubuntu 中,这些目录只能由 root 访问,因此您应该运行sudo ..
或运行sudo chmod g+rw ...
. 在后者中,您应该将您的帐户设置为 root 和 ssl-cert 组,并使用sudo usermod -a -G ssl-cert ubuntu
.
您可以将 Nginx 用作后端,将 nginx 用作反向代理服务器。这是 /etc/nginx/site-enabled(链接到相应的 /etc/ngix/site-available)目录中的示例配置。
upstream yaws {
server 127.0.0.1:8083;
keepalive 8;
}
# the nginx server instance
server {
listen 0.0.0.0:80;
server_name yaws.example.com;
access_log /var/log/yaws/access_yaws.log;
error_log /var/log/yaws/error_yaws.log;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://yaws/;
proxy_redirect off;
}
location /excluded {
return 403;
}
}
您可以使用 启动 yaws 服务器sudo server yaws start
,并使用 来检查 yaws 是否正在运行ps aux | grep yaws
。您可以使 yaws 服务器在启动时使用sudo update-rc.d -f yaws enable
.
您还可以使用yaws -i
命令交互地运行和测试 yaws 服务器。在这种情况下,如果您看到错误消息:
=ERROR REPORT==== 10-Nov-2015::09:44:33 ===
Yaws: Failed to listen 0.0.0.0:8443 : {error,eaddrinuse}
=ERROR REPORT==== 10-Nov-2015::09:44:33 ===
Can't listen to socket: {error,eaddrinuse}
=INFO REPORT==== 10-Nov-2015::09:44:33 ===
application: yaws
exited: {{shutdown,
{failed_to_start_child,yaws_server,
{badbind,
[{yaws_server,start_group,2,
[{file,"yaws_server.erl"},{line,264}]},
{lists,filtermap,2,[{file,"lists.erl"},{line,1302}]},
{yaws_server,init2,5,
yaws 服务器正在运行,因此您应该使用 停止 yaws 服务器sudo service yaws stop
,然后yaws -i
再次运行。然后你会看到提示,如果你按下回车键。
=INFO REPORT==== 10-Nov-2015::09:45:42 ===
Yaws: Listening to 0.0.0.0:8443 for <1> virtual servers:
- https://localhost:8443 under /usr/share/yaws
=INFO REPORT==== 10-Nov-2015::09:45:42 ===
Yaws: Listening to 0.0.0.0:8083 for <1> virtual servers:
- http://localhost:8083 under /home/ubuntu/webapp/yaws/simple
1>
您可以运行许多命令,例如,您可以检查 yaws 找到 erlang 梁代码的路径code:get_path().
1> code:get_path().
["/usr/lib/yaws/ebin",".",
"/usr/lib/erlang/lib/kernel-2.16.4/ebin",
"/usr/lib/erlang/lib/stdlib-1.19.4/ebin",
"/usr/lib/erlang/lib/xmerl-1.3.5/ebin",
在配置中,您已经/home/ubuntu/webapp/yaws/simple
使用 8083 端口访问 docroot,因此您可以访问静态文件:即 http://...:8083/hello.html
.
如果文件具有 .yaws 扩展名,yaws 会将其动态编译为 erlang 代码,并将源代码存储在/var/cache/yaws/.yaws/yaws/debian_yaws/
.
您可以将 html 代码放在 yaws 文件中。
<html>
<h1>Hello world </h1>
</html>
你也可以放erlang代码。检查这out(Arg) ->
是呈现为 HTML 的函数。
<html>
<h1> Yesssssss </h1>
<erl>
out(Arg) -> {html, "<h2> Hello again </h2>"}.
</erl>
</html>
您可以教 yaws 调用 erlang 代码。使用此配置:
<server localhost>
port = 8083
listen = 0.0.0.0
docroot = /home/ubuntu/webapp/yaws/simple
appmods = <pathelem, myappmod>
</server>
当 Yaws 在 URL 中看到 pathelem 时,它会调用 myappmod 方法。对于应用模式,您应该制作 myappmod 模块。
-module(myappmod).
-author('klacke@bluetail.com').
-include("/usr/lib/yaws/include/yaws_api.hrl").
-compile(export_all).
box(Str) ->
{'div',[{class,"box"}],
{pre,[],Str}}.
out(A) ->
{ehtml,
[{p,[],
box(io_lib:format("A#arg.appmoddata = ~p~n"
"A#arg.appmod_prepath = ~p~n"
"A#arg.querydata = ~p~n",
[A#arg.appmoddata,
A#arg.appmod_prepath,
A#arg.querydata]))}]}.
然后,将其编译为光束二进制文件。
erlc myappmod.erl
在交互模式下,作为“.” 已经在路径中,但在服务器模式或守护程序模式下,bean 应该在搜索路径之一中。在/etc/yaws/yaws.conf
中,您可以更新 ebin 目录。
ebin_dir = /usr/lib/yaws/custom/ebin
有了这个appmode,有了这个URL。
http://yaws.example.com:8083/zap/pathelem/foo/bar/x.pdf?a=b
结果将是:
A#arg.appmoddata = "foo/bar/x.pdf"
A#arg.appmod_prepath = "/zap/"
A#arg.querydata = "a=b"
我认为这是足够的信息,人们可以开始阅读其他文档。