2 Classic UI apps running side by side problem

Hi support,
I have 2 different Classic UI apps running side by side on different ports. The 2 apps are running from IntelliJ from different ports. When I open a page in the first application and go back to the 2nd application, I found out that the 2nd app has stopped working. When I refresh the 2nd app again and open a form, the 1st app also stopped working. The behavior is viz-visa. The message shown is session expired. Is it not possible to run 2 different apps on different ports in the browser at the same time with Jmix claasic ui?
Thanks

image

Apps on the same host share their cookies, see for example security - Are HTTP cookies port specific? - Stack Overflow.

Give your apps different hosts by defining them in your system hosts file like this:

127.0.0.1       host0
127.0.0.1       host1
127.0.0.1       host2
127.0.0.1       host3

Hi Krivopustov,
Thanks, this works for me.