Jams CE edition issues

Alright my setup consists of Cloudflare proxy, I have nginx reverse proxy pointing to jami on port 443. I am able to connect to the application and log in but then when I try to connect on the phone the app says that it needs to be migrated, so I click migrate and type the password in and the jami continues to get loop on that screen asking again that u need to migrate the application. I check the devices and the iPhone shows up and it shows up. I also am unable to see other users im assuming due to it not migrating? The ca cert is self hosted as well. Anyone had better luck getting this going?

Hello, are you talking about JAMS ?

Hey yes I am Community Edition

So what is happening is that I am able to log in as the user but upon logging in the account is stuck in a “this account needs to be migrated” loop after entering the password and pressing migrate account and I can’t really do anything. I’m curretntly passing everything through ngnix reverse proxy.

When you install JAMS, at the Server Parameters page you must check the “Use a reverse proxy” box.

In your nginx vhost you will need to add the following paremets AFTER JAMS has been installed:

    ssl_client_certificate /opt/jams/CA.pem;
    ssl_verify_client optional;

(assuming JAMS was installed in /opt/jams)
and restart nginx.