Appearance
127 - API Gateway
API gateway routing and middleware configuration. This is an example of a MAML document.
maml
{
gateway: {
host: "api.round-petal.net"
port: 443
protocol: "https"
}
# Rate limiting
rate_limit: {
enabled: true
window: "1m"
max_requests: 5964
by: "ip"
}
# CORS policy
cors: {
enabled: true
origins: [
"https://ripe-importance.net"
"https://app.necessary-sushi.info"
]
methods: [
"GET"
"POST"
"PUT"
"DELETE"
]
max_age: 86400
}
cache: {
enabled: true
ttl: 1668
store: "memory"
}
}