我应该将静态文本文件放在哪里才能成为 OTPy?

发布于 2024-12-06 02:58:10 字数 161 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听不够的曲调 2024-12-13 02:58:10

如果页面是应用程序的一部分,则通常位于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文