Ahmet Emin Koçal

Results 5 comments of Ahmet Emin Koçal

You can make use of xdebug to find out exaclty where your app is struggling.

> > > Found this but didn't work, had to do little differently, > > > [ratchetphp/Pawl#72](https://github.com/ratchetphp/Pawl/issues/72) this helped, and now got it working however sometimes still getting an error...

I use this; location /chat/ { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://127.0.0.1:8093; proxy_http_version 1.1; } Just modify it to make it meet your needs.

> > Maybe 0.0.0.0 should be 127.0.0.1? > > `0.0.0.0` listens on all network interfaces on the machine, where `127.0.0.1` only listens on the local loop back interface. he is...