Hello, I have the following situation:
- apache https server 2.4.7
- Odoo docker image https://hub.docker.com/_/odoo/ version 10 (latest)
The apache is listening on port 446 (443 is already in use), with a server dedicated to Odoo, so it forwards everything to Odoo.
Odoo is listening on port 8069. Everything works when I'm logged, but ...
At login and logout, Odoo sends some redirect on address http://<mysite>:446/web or web/login
and the proxy cannot catch it (since it is listening on port 446 for https traffic).
I have tried the fix with an override method there
https://github.com/odoo/odoo/issues/6551#issuecomment-269431865
but I cannot see it activated either.
My analysis points to the fact that Odoo sends a 303 redirect with internal address http://<mysite>:446.
Is there any way I can change the code or config around that?
Thanks a lot, Hubert J.