Starting from the oacs-db-inclusive image, I set up two containers (oacs-a and oacs-b) that communicate with a separate Postgres container. Portainer shows all instances as healthy, and the host ports are properly published.
My goal is to run multiple instances listening only on HTTP, letting Nginx handle HTTPS. To achieve this, I modified the YAML file by setting httpsport="" and removed all HTTPS-related sections from openacs-config.tcl.
The instances start normally, and I successfully completed the installation from the Welcome page. However, after restarting the browser (both Chrome and Firefox), it always redirects to https://127.0.0.1:8080. In contrast, accessing http://localhost:8085 with curl or lynx works fine.
In the logs, I see:
Notice: security::locations add connected location http://127.0.0.1:8085
immediately followed by:
Notice: security::locations add connected secure location https://127.0.0.1:8080
I'm not sure if this is a browser issue or an OpenACS problem.
Claudio