Appearance
531 - API Gateway
API gateway routing and middleware configuration. This is an example of a MAML document.
maml
{
gateway: {
host: "api.coordinated-finger.name"
port: 8443
protocol: "https"
}
# Rate limiting
rate_limit: {
enabled: true
window: "1m"
max_requests: 269
by: "user"
}
# CORS policy
cors: {
enabled: true
origins: [
"https://grave-sideboard.com"
"https://app.appropriate-skyscraper.biz"
]
methods: [
"GET"
"POST"
"PUT"
"DELETE"
]
max_age: 86400
}
cache: {
enabled: false
ttl: 1612
store: "redis"
}
}