I am a newbie to odoo. I have installed odoo on a cloud server using the installscript from github together with ssl and nginx reverse proxy. Now that all seems to be working fine, except the users are always offline , even though they have logged into the database. I dont understand if there is any isuue with the nginx reverse proxy or some configuration in the odoo.
Odoo Version 16.0
The following is configured in the nginx .conf file,
location / {
proxy_pass http://127.0.0.1:8069;
proxy_redirect off;
}
location /longpolling {
proxy_pass http://127.0.0.1:8072;
}