Appearance
725 - API Gateway
API gateway routing and middleware configuration. This is an example of a MAML document.
maml
{
gateway: {
host: "api.pink-sustenance.com"
port: 443
protocol: "https"
}
# Rate limiting
rate_limit: {
enabled: true
window: "5m"
max_requests: 7322
by: "user"
}
# CORS policy
cors: {
enabled: true
origins: [
"https://gorgeous-footrest.name"
"https://app.carefree-decision.com"
]
methods: [
"GET"
"POST"
"PUT"
"DELETE"
]
max_age: 86400
}
cache: {
enabled: true
ttl: 746
store: "memory"
}
}