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

Page under maintenance in NGINX

Sometimes I need to stop my website to put it under maintenance and I use the following NGINX configuration: server { server_name mypage.com; listen 443 ssl http2; listen [::]:443 ssl http2; root /var/www/mypage.com/public_html/; index maintenance.html; } The question is, if…

VIEW QUESTION
Back To Top
Search