0

我使用https://github.com/dotcloud/node-on-dotcloud设置了一个自定义 nodejs 服务。但是现在它似乎没有nginx。如何为自定义 nodejs 服务设置 nginx?

4

1 回答 1

0

首先,警告性声明:dotCloud 'custom' 服务仍处于测试阶段。所以我现在给你的答案将来可能会改变。

当您创建一个“自定义”类型的 nodejs 服务时,您的服务容器也有 nginx 可用,但它没有运行。要让 nginx 运行,您需要:

  1. 将 nginx.conf 文件添加到应用程序的根目录。

  2. 在 dotcloud.yml 文件中添加一个“进程”来启动 nginx:

    进程:nginx -c your_configuration_file

其中 *your_configuration_file* 是 nginx.conf 的完整路径

我希望这会有所帮助!

/安迪

于 2012-07-17T00:28:35.600 回答