Hi folks. Does any one know of any external tools or plugins for data analytics on nodeBB usage.
I am looking to calculate some engagement metrics of the forum members. For ex:
DAU, WAU, MAU Average upvotes spread over a time period etc etc.@julian The location configuration:
location ^~ /forum {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
#rewrite ^/forum(.*) /$1 break;
proxy_pass http://127.0.0.1:4567;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
@smendez-hi Personally, I used location /forum/ {
in my nginx block, not sure if that makes a difference.
I just want to confirm: are you talking about the user avatar, or the cover image on the profile page?
@smendez-hi I just checked, and this is fixed in at least the latest version of NodeBB. It was probably fixed long ago, though.
@smendez-hi my location block:
location /forum/ {
client_max_body_size 200m;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Access-Control-Allow-Origin 'http://localhost/forum';
proxy_pass http://127.0.0.1:4567;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
Ok, thanks to both of you. In case of any news i will update this thread. But for now i will continue with this bug. We can live with this.