私は以前にnginxで問題なく実行したWebSocketをリバースプロキシしようとしています。奇妙なことに、私は以前の成功をそれほど単純なもので再現することができないようです。私は何度も何度も設定ファイルを使ってきましたが、私のエラーを見つけることができないようです。
これが私の完全なdefault.conf
:
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
location /api/ {
proxy_pass ${API_LOCATION};
}
location / {
proxy_pass ${UI_LOCATION};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
私が得ているエラー:
2016/10/10 23:30:24 [emerg] 8#8: invalid number of arguments in "map" directive in /etc/nginx/conf.d/default.conf:1
nginx: [emerg] invalid number of arguments in "map" directive in /etc/nginx/conf.d/default.conf:1
そして、私の設定を複製したい場合に備えて、私が使用している正確なDockerfile(save default.conf
なので conf.templates/default.conf
Dockerfileに対する相対:
FROM nginx
COPY conf /etc/nginx/conf.templates
CMD /bin/bash -c "envsubst < /etc/nginx/conf.templates/default.conf > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"
envsubst
コマンドは、$vars
と$http_upgrade
を含む$connection_upgrade
をすべて置き換えます。置換する変数のリストを提供する必要があります。例:
envsubst '${API_LOCATION},${UI_LOCATION}' < /etc/nginx/conf.templates/default.conf
参照: envsubstを使用して特定の変数のみを置き換える
さらに、docker-compose
構成では、変数の置換を無効にするために、二重の$$
エスケープを使用する必要があります。
FROM nginx
COPY conf /etc/nginx/conf.templates
CMD /bin/bash -c "envsubst '$${API_LOCATION},$${UI_LOCATION}' < /etc/nginx/conf.templates/default.conf > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"