5

我想知道如何在服务器/ip/域名的根目录下设置 Foxx 应用程序?

例如,如果我的 IP 是100.12.32.12 如果我去http://100.12.32.12它将打开没有 URL 重定向的单页 foxx 应用程序。

我尝试过的事情

  1. 目前我让 Arangodb 使用tcp://0.0.0.0:80端点,所以我让端口工作。

  2. 我还在我的应用程序中设置了一个index.html文件manifest.json并将该应用程序安装到/

    然而,目前将http://100.12.32.12 我重定向到http://107.170.131.61/_db/_system/index.html哪个有效,但 URL 已更改。

    http://100.12.32.12/index.html可以,但我想知道是否可以http://100.12.32.12在没有重定向的情况下显示应用程序。

  3. 我试过sudo arangod --javascript.app-path /path/to/app了,但这似乎不起作用。

谢谢。我是 Arangodb 和 Foxx 的新手。

4

1 回答 1

3

你可以试试下面的吗?在终端窗口中打开一个 arangosh 或转到 GUI 中的 JS shell。

arangosh [_system]> db._routing.save({ url: "/", priority: 1, action: {do: "org/arangodb/actions/redirectRequest", options: {permanently: true, destination: "/index.html" } } })
{ 
  "error" : false, 
  "_id" : "_routing/87048615", 
  "_rev" : "87048615", 
  "_key" : "87048615" 
}

重新启动服务器(它需要重新加载现在的路由)。清除/重新启动浏览器(对于 chrome,您可能需要忘记访问过的站点)。使用 telnet 检查

> telnet localhost 8529
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET / HTTP/1.1

HTTP/1.1 301 Moved
location: http://localhost:8529/index.html
server: ArangoDB
content-type: text/html
connection: Keep-Alive
content-length: 183

<html><head><title>Moved</title></head><body><h1>Moved</h1><p>This page has moved to <a href="http://localhost:8529/index.html">http://localhost:8529/index.html</a>.</p></body></html>

如果您没有看到正确的地址,请检查文档是否在 _routing 中正确创建。

现在用浏览器检查。如果这仍然显示错误的重定向,请刷新浏览器缓存。

于 2014-05-13T21:15:54.913 回答