Unauthenticated Access

The YAML file provided below contains an example YAML configuration for an IBM Application Gateway (IAG) container which:

  1. Defines a single Web application which will be proxied by the IAG.

Example YAML

version: "23.04"

#
# Configure an IAG container to proxy a single Web application.  Due to the 
# fact that no identity source has been specified unauthenticated access
# will be allowed to this application.
#

#
# Define a resource server which will be hosted at the root path of the
# IAG container.  A single Web server, located at http://10.10.10.200:1337, 
# hosts the resources.
#

resource_servers:
  - path: "/"
    connection_type: "tcp"
    servers:
      - host: "10.10.10.200"
        port: 1337