-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reverb wont work with ssl on ubuntu #176
Comments
i have same problem |
What does your Apache configuration look like? |
<VirtualHost *:80>
RewriteEngine on i have also tried with another server running nginx server {
try_files $uri $uri/ /index.php?$query_string;
location /app/ { proxy_set_header Upgrade $http_upgrade; proxy_read_timeout 300s; access_log /var/log/nginx/app_access.log; proxy_redirect off;
}
} |
It's been a while since I have worked with Apache, but is part of the issue that you only have a VirtualHost running on port 80? With Nginx, you can't use |
I have same problem. This is the connection status my .env BROADCAST_CONNECTION=reverb REVERB_SERVER_HOST=127.0.0.1 REVERB_APP_ID=920552 VITE_REVERB_APP_KEY="${REVERB_APP_KEY}" my broadcast config is
my event file is
when i call this function
my route is
it through the error is . {"userId":4,"exception":"[object] (Illuminate\Broadcasting\BroadcastException(code: 0): Pusher error: |
If you start the server with debug mode enabled ( I don't think this is related to the original issue though, so please open a new one if you are unable to track it down. Closing this issue for now due to lack of activity. |
Reverb Version
1.0.0-(beta9)
Laravel Version
11.5
PHP Version
8.2.16
Description
i have a problem since announcing laravel reverb
i run laravel app on ubuntu 22 server ,
apache2
php 8.2
reverb works good with no ssl , but when i activate ssl , it refuse to handshake
reverb config:
REVERB_SERVER_HOST=0.0.0.0
REVERB_SERVER_PORT=8080
REVERB_HOST="cp.*****.com"
REVERB_PORT=443
getting error in apache logs
AH00961: https: failed to enable ssl support for 127.0.0.1:8080 (localhost)
i have tried to remove ssl options , and redirect from .htaccess , always the samp
Steps To Reproduce
install laravel 11 app
setup reverb config as docs
activate ssl
The text was updated successfully, but these errors were encountered: