Frappe Publish Realtime problem

Hi ,

i dunno if anyone facing same issue… but frappe.publish_realtime is not working on me somehow… no error… just not working…

anyone have way to fix or trace this ?

im currently at workign with version
npm version 6.14.4
frappe 12.5

@saurabh6790

Thanks

same here for v11 but just for our 1 server. The rest are working fine.

For me it was solved by commenting out below block in frappe-bench/config/nginx.conf:

ssl_ecdh_curve secp384r1

Its broke for me after regenerating nginx config using bench setup nginx. Some time ago I probably did a bench update on my server and am using letsencrypt. I found that a lot of parameters are changed in nginx’s config to beef up security and ssl_ecdh_curve secp384r1 is one of them. Read Nginx’s documentation to understand what it means

Found the hint here: https://github.com/nodejs/node/issues/16196#issuecomment-453410476

1 Like

Well even I was facing this issue and since realtime is not noticed alot by users it took a long time for us to realise that it was broke but I just wanted to add to it that instead of commenting out the block we can change the

ssl_ecdh_curve secp384r1

to

ssl_ecdh_curve auto

This solution is from the github pull request

1 Like

Please refer to this