mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
243 B
YAML
15 lines
243 B
YAML
# Serving HTML through API Gateway for AWS Lambda
|
|
service: serve-html
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs4.3
|
|
|
|
functions:
|
|
staticHtml:
|
|
handler: handler.html
|
|
events:
|
|
- http:
|
|
method: get
|
|
path: landing-page
|