How to see site visitors?
-
Such should be available from your web server logs, e.g. /var/log/nginx/access.log
From within NodeBB ACP, you may access error logs, but reproducing everything that comes in would be redundant and more efficiently handled by the web server.
You may, however, enable IP logging for individual posts NodeBB ACP side if you are simply trying to track "bad actors" for black listing purposes. ACP->settings/post#ip-tracking
HTH- Have fun!
-
@julian just out of interest whats easiest way to view this?
Im hosting on my own server, Im guessing this list is stored in the mongoDB?
I dont know much about databases, if you could tell me which tool I can use to inspect the database manually I will experiment -
@baris
Thanks, that worked, well it gave me a list of
{ "_id" : ObjectID("634....."), "key" : "ip:recent", "value" : "3ab6a...long.....", "score" : 1665...}
But the value: (^..long) seems to be a Hash!
Would the IP records be stored in the db as hashed??