Hi all!
I am trying to setup wave-protocol server behind nginx web server.

Currently i got client view by address domain with status offline (by
local address it`s status online).
Where I can find some description on client-server communication ?
I was trying to forward 5269 port, but without success.

my server structure is:

server1[ip] - nat server  (with real ip)
server2[ip] - nginx server (with real ip)
server3[ip] - wave-protocol server (using nat and has only local
network ip)

So, server2 forward 80 port to server3 by nginx, and 5269 port by
iptables rules :
===

iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -t nat -A PREROUTING -p tcp -i eth0 -d server2 --dport 5269 -
j DNAT --to server3:5269
iptables -A FORWARD -p tcp -i eth0 -d server3 --dport 5269 -j ACCEPT

===
wave protocol settings (changes in original):

wave_server_domain = my.domain.org
http_frontend_public_address = server3:9898
use_socketio = true

I got successfully loaded web client on my.domain.org, but no
communication between client and server (by accessing with server3
address web client go online ).
Is There is other`s setting that I should change?

Thank you!

-- 
You received this message because you are subscribed to the Google Groups "Wave 
Protocol" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/wave-protocol?hl=en.

Reply via email to