documentation/content/administration
Julien Castiaux b1c9400da2 [FIX] deploy: nginx forwarded-host with tcp port
Install nginx using the nginx configuration found in the documentation
and changes the `listen` port to 8080. Start Odoo in `--proxy-mode`.

    listen 8080;
    server_name mycompany.odoo.com;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
    location / {
            proxy_pass http://127.0.0.1:8069;
    }

Inside your browser, access "http://mycompany.odoo.com:8080" you are
wrongly redirected to "http://mycompany.odoo.com:80".

Odoo uses the `X-Forwarded-Host` http header value to generate new URls,
in this configuration `$host` only contains the domain (=hostname using
the urllib terminology) instead of the domain+port (=netloc). The
variable that contains both the domain and the port is actually
`$http_host`.

closes odoo/documentation#6940

Closes: odoo/odoo#64643
X-original-commit: 09c42c5896
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-18 19:59:22 +00:00
..
install [FIX] deploy: nginx forwarded-host with tcp port 2023-12-18 19:59:22 +00:00
maintain [IMP] upgrade: overhaul upgrade doc 2023-11-07 13:40:30 +00:00
odoo_sh [IMP] upgrade: overhaul upgrade doc 2023-11-07 13:40:30 +00:00
upgrade [IMP] upgrade: overhaul upgrade doc 2023-11-07 13:40:30 +00:00
install.rst [REF] install: move intro to main install page and split by install type 2023-08-18 12:08:56 +02:00
maintain.rst [FW][ADD] maintain: connect office365 with azure oauth 2023-01-18 17:38:17 +01:00
odoo_sh.rst [IMP] *: introduce tables of contents in top-level app pages 2021-07-07 14:56:38 +02:00
upgrade.rst [IMP] upgrade: add note on bank synch neutralization 2023-11-22 14:15:30 +00:00