我应该将静态文本文件放在哪里才能成为 OTPy?
我正在使用 cowboy 构建服务器,并且我有一些想要提供服务的静态 HTML 页面。有没有一个 OTP 友好的地方可以放置这类东西?是否有一种既定的方法来告诉钢筋在哪里寻找此类东西?
I'm building a server with cowboy, and I've got some static HTML pages that I want to serve. Is there an OTP friendly place to put that sort of thing? Is there an established way to tell rebar where to look for this sort of thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果页面是应用程序的一部分,则通常位于 priv 目录下,例如 priv/docroot 或类似目录。我不了解 rebar,但一般来说,
filename:join(code:priv_dir(?APPNAME), "docroot")
可用于在运行时计算完整目录名称。If the pages are part of the application, then typically under the priv directory, for example priv/docroot or similar. I don't know about rebar, but in general,
filename:join(code:priv_dir(?APPNAME), "docroot")
could be used to compute the full directory name at runtime.