add PUBLIC_MANAGEDURL_CONNECT to override HOST:PORT assumption (#269)

* add PUBLIC_MANAGEDURL_CONNECT to override HOST:PORT assumption

Add optional override to assuming that the managed URL can be
constructed simply by concatenating a HOST and PORT pair as HOST:PORT.
This is needed for deployments where multiple services are hosted
using URL rewriting on a single host.

* address review feedback

rename PUBLIC_MANAGEDURL_CONNECT to PUBLIC_GATEWAY_URL and do not
hardwire http protocol for PUBLIC_GATEWAY_URL
2 files changed
tree: de8a23aa071d917b8c2948c741f21addc9888144
  1. conf.d/
  2. doc/
  3. html/
  4. scripts/
  5. tests/
  6. tools/
  7. .dockerignore
  8. .gitignore
  9. .profiling.after
  10. .profiling.before
  11. .travis.yml
  12. api-gateway.conf
  13. build_profiling.sh
  14. CONTRIBUTING.md
  15. DEPENDENCIES.md
  16. Dockerfile
  17. init.sh
  18. LICENSE.txt
  19. Makefile
  20. naxsi_core.rules
  21. README.md
README.md

OpenWhisk API Gateway

Build Status License

A performant API Gateway based on Openresty and NGINX.

Project status

This project is currently considered beta stage, Large swaths of code or APIs may change.

Table of Contents

Quick Start

docker run -p 80:80 -p <managedurl_port>:8080 -p 9000:9000 \
            -e PUBLIC_MANAGEDURL_HOST=<managedurl_host> \
            -e PUBLIC_MANAGEDURL_PORT=<managedurl_port> \
            -e REDIS_HOST=<redis_host> \
            -e REDIS_PORT=<redis_port> \
            -e REDIS_PASS=<redis_pass> \
            openwhisk/apigateway:latest

API

Developer Guide

Running locally

To build the docker image locally use:

 make docker

To Run the Docker image

 make docker-run PUBLIC_MANAGEDURL_HOST=<mangedurl_host> PUBLIC_MANAGEDURL_PORT=<managedurl_port> \
   REDIS_HOST=<redis_host> REDIS_PORT=<redis_port> REDIS_PASS=<redis_pass>

Testing

First install the necessary dependencies:

 make test-build

Then, run the unit tests:

 make test-run