Posts

Showing posts from 2022

Install odoo 15 on ubuntu 18 / 20 with nginx and auto renewing ssl

  Install odoo 15 in ubuntu 18/20 LTS with secure domain name   Explore the seamless journey of installing Odoo 15 on Ubuntu 18/20 LTS while securing it with a custom domain and auto-renewing Let's Encrypt SSL through Nginx. Elevate your Odoo experience with a step-by-step guide that covers everything from setting up SSH access, enhancing server security with Fail2ban, to configuring a robust Nginx web server.     ## ssh into the server with root privileges or some user having sudo  ssh username@IP ##update the system  sudo apt-get update && sudo apt-get upgrade  ##Fail2ban is an tool used to improve server security from cyber attacks sudo apt-get install openssh-server fail2ban -y ##Install the required python packages,libraries and web dependencies for Odoo sudo apt-get install -y python3-pip -y sudo apt-get install python-dev python3-dev libxml2-dev libxslt1-dev zlib1g-dev libsasl2-dev libldap2-dev build-essential libssl-dev libffi-dev ...