首页 > 解决方案 > 无服务器框架,处理程序不存在

问题描述

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

标签: phpamazon-web-servicesaws-lambdaserverless-frameworkserverless

解决方案


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


推荐阅读