#!/bin/bash # Copyright © 2020 Interplanetary Database Association e.V., # Planetmint and IPDB software contributors. # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 set -euo pipefail # Authorization Modes threescale_auth_mode="threescale" secret_token_auth_mode="secret-token" # Cluster vars node_fqdn=`printenv NODE_FQDN` node_frontend_port=`printenv NODE_FRONTEND_PORT` # NGINX vars dns_server=`printenv DNS_SERVER` health_check_port=`printenv HEALTH_CHECK_PORT` authorization_mode=`printenv AUTHORIZATION_MODE` # MongoDB vars mongo_backend_host=`printenv MONGODB_BACKEND_HOST` mongo_backend_port=`printenv MONGODB_BACKEND_PORT` # OpenResty vars openresty_backend_host=`printenv OPENRESTY_BACKEND_HOST` openresty_backend_port=`printenv OPENRESTY_BACKEND_PORT` # Planetmint vars bdb_backend_host=`printenv PLANETMINT_BACKEND_HOST` bdb_api_port=`printenv PLANETMINT_API_PORT` bdb_ws_port=`printenv PLANETMINT_WS_PORT` # Tendermint vars tm_pub_key_access_port=`printenv TM_PUB_KEY_ACCESS_PORT` tm_p2p_port=`printenv TM_P2P_PORT` # sanity check if [[ -z "${node_frontend_port:?NODE_FRONTEND_PORT not specified. Exiting!}" || \ -z "${mongo_backend_host:?MONGODB_BACKEND_HOST not specified. Exiting!}" || \ -z "${mongo_backend_port:?MONGODB_BACKEND_PORT not specified. Exiting!}" || \ -z "${openresty_backend_port:?OPENRESTY_BACKEND_PORT not specified. Exiting!}" || \ -z "${openresty_backend_host:?OPENRESTY_BACKEND_HOST not specified. Exiting!}" || \ -z "${bdb_backend_host:?PLANETMINT_BACKEND_HOST not specified. Exiting!}" || \ -z "${bdb_api_port:?PLANETMINT_API_PORT not specified. Exiting!}" || \ -z "${bdb_ws_port:?PLANETMINT_WS_PORT not specified. Exiting!}" || \ -z "${dns_server:?DNS_SERVER not specified. Exiting!}" || \ -z "${health_check_port:?HEALTH_CHECK_PORT not specified. Exiting!}" || \ -z "${node_fqdn:?NODE_FQDN not specified. Exiting!}" || \ -z "${tm_pub_key_access_port:?TM_PUB_KEY_ACCESS_PORT not specified. Exiting!}" || \ -z "${tm_p2p_port:?TM_P2P_PORT not specified. Exiting!}" ]]; then echo "Missing required environment variables. Exiting!" exit 1 else echo NODE_FQDN="$node_fqdn" echo NODE_FRONTEND_PORT="$node_frontend_port" echo DNS_SERVER="$dns_server" echo HEALTH_CHECK_PORT="$health_check_port" echo MONGODB_BACKEND_HOST="$mongo_backend_host" echo MONGODB_BACKEND_PORT="$mongo_backend_port" echo OPENRESTY_BACKEND_HOST="$openresty_backend_host" echo OPENRESTY_BACKEND_PORT="$openresty_backend_port" echo PLANETMINT_BACKEND_HOST="$bdb_backend_host" echo PLANETMINT_API_PORT="$bdb_api_port" echo PLANETMINT_WS_PORT="$bdb_ws_port" echo TM_PUB_KEY_ACCESS_PORT="$tm_pub_key_access_port" echo TM_P2P_PORT="$tm_p2p_port" fi if [[ ${authorization_mode} == ${secret_token_auth_mode} ]]; then NGINX_CONF_FILE=/etc/nginx/nginx.conf secret_access_token=`printenv SECRET_ACCESS_TOKEN` sed -i "s|SECRET_ACCESS_TOKEN|${secret_access_token}|g" ${NGINX_CONF_FILE} elif [[ ${authorization_mode} == ${threescale_auth_mode} ]]; then NGINX_CONF_FILE=/etc/nginx/nginx-threescale.conf sed -i "s|OPENRESTY_BACKEND_PORT|${openresty_backend_port}|g" ${NGINX_CONF_FILE} sed -i "s|OPENRESTY_BACKEND_HOST|${openresty_backend_host}|g" ${NGINX_CONF_FILE} else echo "Unrecognised authorization mode: ${authorization_mode}. Exiting!" exit 1 fi # configure the nginx.conf file with env variables sed -i "s|NODE_FQDN|${node_fqdn}|g" ${NGINX_CONF_FILE} sed -i "s|NODE_FRONTEND_PORT|${node_frontend_port}|g" ${NGINX_CONF_FILE} sed -i "s|MONGODB_BACKEND_HOST|${mongo_backend_host}|g" ${NGINX_CONF_FILE} sed -i "s|MONGODB_BACKEND_PORT|${mongo_backend_port}|g" ${NGINX_CONF_FILE} sed -i "s|PLANETMINT_BACKEND_HOST|${bdb_backend_host}|g" ${NGINX_CONF_FILE} sed -i "s|PLANETMINT_API_PORT|${bdb_api_port}|g" ${NGINX_CONF_FILE} sed -i "s|PLANETMINT_WS_PORT|${bdb_ws_port}|g" ${NGINX_CONF_FILE} sed -i "s|DNS_SERVER|${dns_server}|g" ${NGINX_CONF_FILE} sed -i "s|HEALTH_CHECK_PORT|${health_check_port}|g" ${NGINX_CONF_FILE} sed -i "s|TM_PUB_KEY_ACCESS_PORT|${tm_pub_key_access_port}|g" ${NGINX_CONF_FILE} sed -i "s|TM_P2P_PORT|${tm_p2p_port}|g" ${NGINX_CONF_FILE} # start nginx echo "INFO: starting nginx..." exec nginx -c ${NGINX_CONF_FILE}