Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi @dedominique94,
I believe you’ll need to change your server block. Please change your location block to be the following
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header HOST $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass_request_headers on;
}
One other thing, please allow access on port 80, I believe this might be causing issues as well.
When I check your website on port 80, I get
curl -IL circusfamilyprojects.nl
curl: (7) Failed to connect to circusfamilyprojects.nl port 80: Connection refused
It’s possible you are experiencing the issues due to the above.
Regards, KDSys
Hi @dedominique94, I want to use my laravel project and wss togather on same port but with ssl on nginx. Is it possible & if possible plz help me to setup with nginx.