【发布时间】:2020-06-02 04:34:37
【问题描述】:
我正在使用无服务器框架在 AWS Lambda 上部署我的 PHP 函数。 我试过一个简单的例子,但我可以在 cloudwatch 里面看到这个错误:
Handler `/var/task/public/test.hello` doesn't exist
这是我的无服务器文件:
service: symfony-bref
provider:
name: aws
region: eu-central-1
runtime: provided
environment:
APP_ENV: prod
plugins:
- ./vendor/bref/bref
functions:
api:
handler: public/index.php
description: ''
timeout: 30 # in seconds (API Gateway has a timeout of 30 seconds)
layers:
- ${bref:layer.php-73-fpm}
events:
- http: 'ANY /'
- http: 'ANY /{proxy+}'
S3Handler:
handler: public/test.hello
layers:
- ${bref:layer.php-73}
events:
- s3:
bucket: ${ssm:/symfony-bref/AWS_S3_BUCKET_NAME:1}
event: s3:ObjectCreated:*
existing: true
我的函数 test.php 在 public 文件夹内:
<?php
function hello($eventData) : array
{
return ["msg" => "hello from PHP " . PHP_VERSION];
}
我可以为函数 S3Handler 做什么? Api 功能正常。
【问题讨论】:
标签: php amazon-web-services aws-lambda serverless-framework serverless