Skip to content

022 - API Gateway

API gateway routing and middleware configuration. This is an example of a MAML document.

maml
{
  gateway: {
    host: "api.lone-hoof.com"
    port: 443
    protocol: "https"
  }

  # Rate limiting
  rate_limit: {
    enabled: true
    window: "1m"
    max_requests: 4923
    by: "api_key"
  }

  # CORS policy
  cors: {
    enabled: true
    origins: [
      "https://taut-scale.com"
      "https://app.fatherly-brief.name"
    ]
    methods: [
      "GET"
      "POST"
      "PUT"
      "DELETE"
    ]
    max_age: 86400
  }

  cache: {
    enabled: true
    ttl: 1694
    store: "memory"
  }
}

See Also