skip to Main Content

Laravel reverb with ssl on nginx

Currently changing beyondcode/laravel-websockets for laravel/reverb Reverb and laravel echo success running on local without ssl I use a simple chirper laravel app: https://github.com/jbarreraballestas/laravel-chirper-react-realtime/tree/laravel-reverb config/reverb.php 'servers' => [ 'reverb' => [ 'host' => env('REVERB_SERVER_HOST', '0.0.0.0'), 'port' => env('REVERB_SERVER_PORT', 8080), 'hostname' =>…

VIEW QUESTION

Laravel – How to release only API routes

I developed a web application with React frontend and Laravel for stateless API. I would like to access to the frontend with the url "http://localhost/my-application" and the backend's API with the url "http://localhost/api/my-application/". I created the folder "www/api/my-application" and here…

VIEW QUESTION
Back To Top
Search