Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们已经在 ubuntu 服务器上安装了 kong。当我们尝试通过 Kong 调用 lumen api 时,它返回 404。当调用使用 core php 创建的 API 时,Kong 工作正常。Kong 和 Laravel 集成有什么限制吗?
假设您使用刀片模板中的 kong api,您必须在您的路线 (kong 0.14) 或 api(kong <= 0.13) 中添加“OPTIONS”方法,然后重试。
你为你的 Laravel 应用程序服务的 web 服务器是什么?Nginx + PHP-FPM ?
Kong 是 API 网关和反向代理。您必须使用 nginx 或 apache 为您的 laravel 应用程序提供服务,然后将 HA Proxy 放在 Kong 后面。