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

nginx, reverse proxy wss, spring boot

Trying to setup reverse proxy with WS support, but I'm getting 403 (forbidden). I'm confused why it happen, because everything works as expected without proxy. My config is here: server { root /var/www/html8080; server_name game.memoux.com; # managed by Certbot listen…

VIEW QUESTION

Nginx – Dropping a part of the URL in Rails

I have a setup where I route all requests for /upload/* to Rails. Using the blog example, I want somedomain.com/upload/article/new to be treated as somedomain.com/article/new by Rails. I ended up with the following. routes.rb Rails.application.routes.draw do root "articles#index" scope 'upload'…

VIEW QUESTION

Ubuntu – Nginx: upstream sent duplicate header line: "Transfer-Encoding: chunked", previous value: "Transfer-Encoding: chunked”

After upgrading Nginx from 1.18 to 1.24 we are getting following error: upstream sent duplicate header line: "Transfer-Encoding: chunked", previous value: "Transfer-Encoding: chunked" while reading response header from upstream, client: 54.xx.xx.xx, server: backend.example.com, request: "POST /test/file HTTP/1.1", upstream: "http://10.0.xx.xx:6067/test/file", host:…

VIEW QUESTION
Back To Top
Search