嗨,在开始本教程之前,我建议您阅读《Laravel Reverb 终极指南:实时通知》,因为本教程假设您已经在本地设置了 Laravel Reverb 并可以使用。
基本概念
首先,了解端口连接的工作原理非常重要。 Laravel Reverb 使用两个端口:一个用于连接到 WebSocket,另一个用于服务器通信。
在这种情况下,我们将使用端口 443 进行公共访问。此端口对于访问网页的用户至关重要,因为它处理安全的 HTTPS 流量。
对于 WebSocket 通信,我们将使用端口 6001。该端口不需要公开访问,因为它仅由服务器内部用于实时通信。
配置
现在,让我们修改 .env
REVERB_HOST="your.domain.com" # your domain name here REVERB_PORT=443 # The public port used by all clients on your website REVERB_SCHEME=https # Required for prod environment
他们在你的 nginx 配置中放置下一个代码。
server { listen 443 ssl; listen [::]:443 ssl; server_name your.server.name; {{ssl_certificate_key}} {{ssl_certificate}} location /app/ { proxy_http_version 1.1; proxy_set_header Host $http_host; proxy_set_header Scheme $scheme; proxy_set_header SERVER_PORT $server_port; proxy_set_header REMOTE_ADDR $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_pass http://0.0.0.0:6001; } location /apps { proxy_http_version 1.1; proxy_set_header Host $http_host; proxy_set_header Scheme $scheme; proxy_set_header SERVER_PORT $server_port; proxy_set_header REMOTE_ADDR $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_pass http://0.0.0.0:6001; } }
我们在这里做什么?此设置将所有 WebSocket 流量从面向公众的端口 443 安全地重定向到端口 6001 上的内部 WebSocket 服务器,从而实现客户端和服务器之间安全高效的实时通信。
对于 Apache 配置,您可以阅读这些帖子。
- https://github.com/laravel/framework/discussions/50675
- https://github.com/laravel/reverb/issues/107#issuecomment-2019340122
完成配置后,下一步就是启动服务。在现实场景中,您应该使用进程管理器,例如 Supervisor,以确保服务持续运行并在需要时自动重新启动。
但是,出于测试目的,您可以从命令行手动运行该命令。
php artisan reverb:start --port=6001 --debug
现在我们已准备好在生产环境中使用 WebSocket。请记住在测试之前重新启动服务并清除缓存,以确保一切顺利运行。
这篇文章可以帮助我们更深入地了解这个主题。
- https://laravel.com/docs/11.x/reverb#product
- https://medium.com/@saddanfah/how-to-use-laravel-reverb-in-product-server-d89e9670b76a
我希望这可以帮助您入门!下一篇文章见。
以上是生产环境中的 Laravel Reverb的详细内容。更多信息请关注PHP中文网其他相关文章!

TheSecretTokeEpingAphp-PowerEdwebSiterUnningSmoothlyShyunderHeavyLoadInVolvOLVOLVOLDEVERSALKEYSTRATICES:1)emplactopCodeCachingWithOpcachingWithOpCacheToreCescriptexecution Time,2)使用atabasequercachingCachingCachingWithRedataBasEndataBaseLeSendataBaseLoad,3)

你应该关心DependencyInjection(DI),因为它能让你的代码更清晰、更易维护。1)DI通过解耦类,使其更模块化,2)提高了测试的便捷性和代码的灵活性,3)使用DI容器可以管理复杂的依赖关系,但要注意性能影响和循环依赖问题,4)最佳实践是依赖于抽象接口,实现松散耦合。

是的,优化papplicationispossibleandessential.1)empartcachingingcachingusedapcutorediucedsatabaseload.2)优化的atabaseswithexing,高效Quereteries,and ConconnectionPooling.3)EnhanceCodeWithBuilt-unctions,避免使用,避免使用ingglobalalairaiables,并避免使用

theKeyStrategiestosiminificallyBoostphpapplicationPermenCeare:1)useOpCodeCachingLikeLikeLikeLikeLikeCacheToreDuceExecutiontime,2)优化AtabaseInteractionswithPreparedStateTemtStatementStatementSandProperIndexing,3)配置

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增强codemodocultion,可验证性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

选择DependencyInjection(DI)用于大型应用,ServiceLocator适合小型项目或原型。1)DI通过构造函数注入依赖,提高代码的测试性和模块化。2)ServiceLocator通过中心注册获取服务,方便但可能导致代码耦合度增加。

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)启用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替换loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

phpemailvalidation invoLvesthreesteps:1)格式化进行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

禅工作室 13.0.1
功能强大的PHP集成开发环境

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。