Configure Odoo with Nginx as a Reverse Proxy

Install and Configure Nginx as a Reverse Proxy for Odoo

8. To enable users to access the Odoo web interface without typing the port number, you can configure Odoo to be accessed using a sub-domain using an Nginx reverse proxy environment.

To configure Nginx as a Reverse Proxy for Odoo, first, you need to install Nginx as shown.

$ sudo apt install nginx

9. When the installation is complete, check if the Nginx service is up and running, is enabled as well.

$ systemctl status nginx
$ systemctl is-enabled nginx
Check Nginx Status
Check Nginx Status

10. Next, create an Nginx server block for Odoo in the file /etc/nginx/conf.d/odoo.conf as shown.

$ sudo vi /etc/nginx/conf.d/odoo.conf

Then copy and paste the following configuration in the file. This is a simple configuration sufficient to run your Odoo system, you can add more configurations by reading the Nginx documentation to suit your environment.

server {
        listen      80;
        server_name odoo.tecmint.lan; access_log /var/log/nginx/odoo_access.log; error_log /var/log/nginx/odoo_error.log; proxy_buffers 16 64k; proxy_buffer_size 128k; location / { proxy_pass http://127.0.0.1:8069; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } location ~* /web/static/ { proxy_cache_valid 200 60m; proxy_buffering on; expires 864000; proxy_pass http://127.0.0.1:8069; } gzip on; gzip_min_length 1000; }

11. After saving the changes in the file. Check the Nginx configuration structure for any syntax errors.

$ sudo nginx -t
Check Nginx Configuration for Errors
Check Nginx Configuration for Errors

12. Now restart the Nginx service to effect the recent changes.

$ sudo systemctl restart nginx

13. Importantly, if you have enabled the UFW firewall service enabled and running, you need to allow HTTP and HTTPS requests through the firewall to the Nginx server before starting to access the Odoo web interface.

$ sudo ufw allow http
$ sudo ufw allow https
$ sudo ufw reload

Step 4: Accessing Odoo Web Administration Interface

14. Next, open a web browser and use the following address to access the Odoo web administration interface.

http://odoo.tecmint.lan

Wait for the interface to load, once it has, you need to create a database for Odoo. Enter a database name, administrator email address, and password. Then select the language and country. You can opt to load sample data or not. Then click Create Database.

Create Database for Odoo
Create Database for Odoo

15. Then the above page will redirect to the administrator’s dashboard showing the available Odoo apps, as shown in the following screenshot. Click on the Install or Upgrade button on an app to install or upgrade it respectively. To logout, click on Admin dropdown ==> Log out.

Comments

Popular posts from this blog

Mikrotik Webproxy with PCC

Dual Wan Load balacing with failover mikrotik

Configure Static IP Address (CLI) on Ubuntu 18.04.5 LTS