From 64b643fe702143feff4f9a065ce33cb3c8afd732 Mon Sep 17 00:00:00 2001 From: Rage <139008637+jo0ta@users.noreply.github.com> Date: Mon, 19 Feb 2024 00:26:58 +0300 Subject: [PATCH 1/3] Update odoo_install.sh --- odoo_install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/odoo_install.sh b/odoo_install.sh index 9cf35ae0..0c4705ba 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -21,7 +21,7 @@ OE_HOME_EXT="/$OE_USER/${OE_USER}-server" # Set to true if you want to install it, false if you don't need it or have it already installed. INSTALL_WKHTMLTOPDF="True" # Set the default Odoo port (you still have to use -c /etc/odoo-server.conf for example to use this.) -OE_PORT="8069" +OE_PORT="8070" # Choose the Odoo version which you want to install. For example: 16.0, 15.0, 14.0 or saas-22. When using 'master' the master version will be installed. # IMPORTANT! This script contains extra libraries that are specifically needed for Odoo 17.0 OE_VERSION="17.0" @@ -30,20 +30,20 @@ IS_ENTERPRISE="False" # Installs postgreSQL V14 instead of defaults (e.g V12 for Ubuntu 20/22) - this improves performance INSTALL_POSTGRESQL_FOURTEEN="True" # Set this to True if you want to install Nginx! -INSTALL_NGINX="False" +INSTALL_NGINX="True" # Set the superadmin password - if GENERATE_RANDOM_PASSWORD is set to "True" we will automatically generate a random password, otherwise we use this one OE_SUPERADMIN="admin" # Set to "True" to generate a random password, "False" to use the variable in OE_SUPERADMIN GENERATE_RANDOM_PASSWORD="True" OE_CONFIG="${OE_USER}-server" # Set the website name -WEBSITE_NAME="_" +WEBSITE_NAME="k4i.org" # Set the default Odoo longpolling port (you still have to use -c /etc/odoo-server.conf for example to use this.) LONGPOLLING_PORT="8072" # Set to "True" to install certbot and have ssl enabled, "False" to use http ENABLE_SSL="True" # Provide Email to register ssl certificate -ADMIN_EMAIL="odoo@example.com" +ADMIN_EMAIL="ragemohammed5@gmail.com" ## ### WKHTMLTOPDF download links ## === Ubuntu Trusty x64 & x32 === (for other distributions please replace these two links, From f096b7a268c0cc1ec245c0b27543d09c026cc28c Mon Sep 17 00:00:00 2001 From: Rage <139008637+jo0ta@users.noreply.github.com> Date: Mon, 19 Feb 2024 00:34:10 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fbafc82..b9af1be9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ If you set the parameter ```INSTALL_NGINX``` to ```True``` you should also confi ##### 1. Download the script: ``` -sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/17.0/odoo_install.sh +sudo wget https://raw.githubusercontent.com/jo0ta/InstallScript/17.0/odoo_install.sh ``` ##### 2. Modify the parameters as you wish. There are a few things you can configure, this is the most used list:
@@ -44,5 +44,5 @@ If you'd like you can use my [DigitalOcean referral link](https://m.do.co/c/d605 ## Minimal server requirements While technically you can run an Odoo instance on 1GB (1024MB) of RAM it is absolutely not advised. A Linux instance typically uses 300MB-500MB and the rest has to be split among Odoo, postgreSQL and others. If you install an Odoo you should make sure to use at least 2GB of RAM. This script might fail with less resources too. -There are known issues on DigitalOcean for example where the installation crashes on 1GB RAM machines. See https://github.com/Yenthe666/InstallScript/issues/243 +There are known issues on DigitalOcean for example where the installation crashes on 1GB RAM machines. See https://github.com/jo0ta/InstallScript/issues/243 From 473f2b34afef277ba7e55d3cb7c5ae2bad9e1210 Mon Sep 17 00:00:00 2001 From: Rage Mohamed Ali <139008637+jo0ta@users.noreply.github.com> Date: Sat, 25 Oct 2025 08:39:16 +0300 Subject: [PATCH 3/3] Remove default configurations in odoo_install.sh Removed default values for Nginx installation, website name, and admin email. --- odoo_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odoo_install.sh b/odoo_install.sh index 0c4705ba..adb00142 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -30,20 +30,20 @@ IS_ENTERPRISE="False" # Installs postgreSQL V14 instead of defaults (e.g V12 for Ubuntu 20/22) - this improves performance INSTALL_POSTGRESQL_FOURTEEN="True" # Set this to True if you want to install Nginx! -INSTALL_NGINX="True" +INSTALL_NGINX="False" # Set the superadmin password - if GENERATE_RANDOM_PASSWORD is set to "True" we will automatically generate a random password, otherwise we use this one OE_SUPERADMIN="admin" # Set to "True" to generate a random password, "False" to use the variable in OE_SUPERADMIN GENERATE_RANDOM_PASSWORD="True" OE_CONFIG="${OE_USER}-server" # Set the website name -WEBSITE_NAME="k4i.org" +WEBSITE_NAME="" # Set the default Odoo longpolling port (you still have to use -c /etc/odoo-server.conf for example to use this.) LONGPOLLING_PORT="8072" # Set to "True" to install certbot and have ssl enabled, "False" to use http ENABLE_SSL="True" # Provide Email to register ssl certificate -ADMIN_EMAIL="ragemohammed5@gmail.com" +ADMIN_EMAIL="" ## ### WKHTMLTOPDF download links ## === Ubuntu Trusty x64 & x32 === (for other distributions please replace these two links,