Jun
Jun
so, you're visiting the dashboard (web ver.) on your linux server? (and whats the address?)
gotcha! whats your `pm2-gui` version? **Please make sure your web/socket address && port of `pm2-gui` could be resolved on your PC** it seems a network issue, i guess :)
1. Are'y visiting dashboard via ip address? or domain? 2. 
All this leads up to the privilege issues, you're running `pm2` with `root`, but `pm2-gui` by `TMZ`, actually `TMZ` can not access the processes of `root`
the nginx configuration is the main issue now, congrats. Are'y serving `pm2-gui` with a sub domain (e.g: `http://my.site.com/pm2-gui/`)?
this is a nginx proxy (sub domain) issue, it's always very easy to get stuck. I'll test this on my centOS ASAP.
I've just tried sub domain and it's working as scheduled: ``` # # The default server # server { listen 80; server_name pm2.focuxy.com; charset utf-8; location / { root /var/www/node-sites;...
Actually `pm2` and `pm2-gui` are both user sensitivity, i.e.: User A owns `process1` and User B owns `process2`, `process2` is invisible for A and `process1` is invisible for B.
gotcha, the logs actually from `pm2.log` but not the `[app].log`. its a good idea to grep logs by app name from `pm2.log` and do not display others
Slow rate of progress 'cause working on the `react-native` client.