mirror of https://github.com/status-im/codimd.git
Updated to handle user address when server behind other services
This commit is contained in:
parent
218761d6a1
commit
c5f6c2bab3
|
@ -632,7 +632,7 @@ function connection(socket) {
|
|||
//create user data
|
||||
users[socket.id] = {
|
||||
id: socket.id,
|
||||
address: socket.handshake.address,
|
||||
address: socket.handshake.headers['x-forwarded-for'] || socket.handshake.address,
|
||||
'user-agent': socket.handshake.headers['user-agent'],
|
||||
color: color,
|
||||
cursor: null,
|
||||
|
|
Loading…
Reference in New Issue