gpt4 book ai didi

php - 无服务器框架,处理程序不存在

转载 作者:行者123 更新时间:2023-12-05 07:12:55 26 4
gpt4 key购买 nike

我正在使用无服务器框架在 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 功能正常。

最佳答案

我看到您在 serverless.yml 文件中添加了处理程序作为 handler: public/index.php,但您的文件名为 test.php。在我看来,这像是打字错误。

关于php - 无服务器框架,处理程序不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60276092/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com