2

dotcloud 提供了许多有用的信息作为环境变量,但我nginx.conf无法访问环境变量。有什么好办法解决这个问题?

这是场景:我想将某些 URL 从我的www静态服务重定向到我的rest服务,所以我目前正在将目标 URL 硬编码为nginx.conf. 我宁愿使用该DOTCLOUD_REST_HTTP_HOST变量,因为这样可以让我的服务轻松迁移。

4

2 回答 2

4

postinstall这是为您的服务使用脚本的好案例。dotCloud 提供了在推送和部署周期的每个阶段运行的构建钩子postinstall,并且钩子最后运行,它可以访问所有环境变量。您可以从实际环境或从实际环境中读取变量~/environment.json(该文件稍微更可靠,因为由于历史原因,放入环境中的内容可能因服务类型而异)。

这是一个例子dotcloud.yml

www:
   approot: www
   type: static
   environment:
     LIMITRATEVAR: 2k

和一个例子nginx.conf(在 www/nginx.conf 中找到):

# limitratevar should get set in dotcloud.yml's environment section
# or via `dotcloud env set limitratevar` if you want to set it for all services.
# And then use a postinstall script to update this nginx.conf with sed
limit_rate LIMITRATEVAR;

最后,从postinstall环境中读取 $LIMITRATEVAR 的值并更新 nginx.conf 的示例(在 www/postinstall 中找到)sed

#!/usr/bin/env bash

# files named "postinstall" will get run automatically when the code is deployed
# to the container where your service runs.
# See:
# http://docs.dotcloud.com/guides/build-file/#prebuild-postbuild-postinstall-build-hooks
# http://docs.dotcloud.com/guides/hooks/#post-install

# Make sure we error-out if there are any problems
set -e
echo "Updating the limit_rate to $LIMITRATEVAR"
sed -i.original "s/LIMITRATEVAR/$LIMITRATEVAR/g" ~/current/nginx.conf
echo "nginx.conf updated. Original stored in nginx.conf.original"
于 2013-10-14T18:34:44.357 回答
2

这里的解决方案适用于某些人,这并不是说在 DotCloud 上实现它可能存在一些问题,但如果你还没有尝试过,那么值得一试。

在顶级配置级别:

 env MYVAR;

在 http 级别:

 perl_set $myvar 'sub { return $ENV{"MYVAR"}; }';

然后,例如,在服务器级别:

 root $myvar; 
于 2013-10-13T21:27:39.727 回答