APIIDA API Gateway Manager

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

This article describes how to use a custom SSL/TLS port for a HTTPS connection with APIIDA API Gateway Manager. 

This will change links from i.e. https://hostname to https://hostname:8443 allowing API Gateway Manager to run on hosts, that already expose another service at port 443.

Instructions

  1. Add the environment variable "NOSTROMO_PORT" and set it to the port to use instead .

  2. Change the corresponding local port in the "ports" section to the same value.

Example Docker Compose Setup

docker-compose.yml
version: '3'
services:
  aagmdb:
    [...]
  aagm:
    image: apiida/aagm
    ports:
        - "80:80"
        - "8443:443"
    restart: always
    volumes:
        - /opt/aagm:/opt/aagm:rw
    depends_on:
        - aagmdb
    links:
        - aagmdb
    environment:
      - NOSTROMO_PORT=8443
volumes:
  aagmdb-vol:



  • No labels