Results 7 comments of Dan

connection.httpHeaders shows the x-forwarded-for right? I'll try this and see what happens ``` Accounts.onLogin(function(info) { console.log(info.connection.clientAddress); console.log(info.connection.httpHeaders); }) ```

It looks like x-forwarded-for sometimes has two ips seperated by a comma. The first is their ip and the second is 127.0.0.1. When that happens clientAddress is 127.0.0.1 I'll post...

https://github.com/meteor/meteor/issues/3981

What do you think about doing what glasser said in https://github.com/meteor/meteor/issues/3981? Parsing x-forwarded-for and choosing the correct one?

Here's some info I found about it. http://serverfault.com/a/414166 Sounds like it should go from right to left and pick the first one that's not a trusted ip. Trusted ips I...

hacs.json was missing for me. After adding it it worked.

Still can't get this to work. See anything wrong? The output of console.log(uiBasePath) is the correct path. ```js const serverAdapter = new KoaAdapter(); serverAdapter.setBasePath('/admin/queues'); const uiBasePath = join(__dirname, '../', 'node_modules',...