Skip to Content
Menu
This question has been flagged
1 Reply
1514 Views

I installed odoo 14 on a redhat 7.9 server but it is reachable with an ip address, I would like to point a domain name to this ip address. Can someone help me? Thank.

Avatar
Discard
Author

thank you it work.

Best Answer

For that purpose you'll have to install a reverse proxy server, such as nginx or any other you like (Apache, caddy, traefik...).
Please see this for nginx: https://linuxize.com/post/configure-odoo-with-nginx-as-a-reverse-proxy/

My favorite is Caddy, as it is the easiest one:
https://www.odoo.com/de_DE/forum/hilfe-1/automatic-ssl-easy-way-to-secure-your-odoo-website-domains-using-caddy-server-2-and-let-s-encrypt-certificates-176598

Generally I recommend to set up the proxy on its own dedicated server and not on the Odoo server for security reasons. The proxy server is open to the public net and the Odoo server is protected from the public net using a firewall which only allows incoming connection from the proxy server on port 8069 only.

The proxy server does not need much ressources, in my case a AWS EC2 type nano (the smallest available) is enough.

Avatar
Discard