Mam taki dziwny problem, że nie wiem jak skonfigurować odpowiednio Laravel Reverb na produkcji. Na devie działało mi wszystko ok, a tu sypie błędami i nie wiem o co już chodzi.
Używam VPS z panelem HestiaCP.

Plik .env - w configu nic nie zmieniałem.

REVERB_APP_ID=387120
REVERB_APP_KEY=uxbvxeoyb3kuhkcsi1cm
REVERB_APP_SECRET=j6vuzgbu74asbwjwuxhy
REVERB_HOST="domena.pl"
REVERB_PORT=443
REVERB_SCHEME=https

VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"

REVERB_SERVER_HOST=0.0.0.0
REVERB_SERVER_PORT=8181

Do pliku nginx.conf dodałem

listen 443 ssl http2;
listen [::]:443 ssl http2;

i

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:8181;

i mam błąd typu niekończąca się historia:

Pusher error: <!DOCTYPE html> <html lang="en" class="auto"> <!-- Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: The POST method is not supported for route apps/387120/events. Supported methods: GET, HEAD. in file /home/admin/web/domena.pl/public_html/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php on line 122 #0

O co tutaj może chodzić?