Remove default configurations in odoo_install.sh

Removed default values for Nginx installation, website name, and admin email.
pull/462/head
Rage Mohamed Ali 1 month ago committed by GitHub
parent f096b7a268
commit 473f2b34af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -30,20 +30,20 @@ IS_ENTERPRISE="False"
# Installs postgreSQL V14 instead of defaults (e.g V12 for Ubuntu 20/22) - this improves performance # Installs postgreSQL V14 instead of defaults (e.g V12 for Ubuntu 20/22) - this improves performance
INSTALL_POSTGRESQL_FOURTEEN="True" INSTALL_POSTGRESQL_FOURTEEN="True"
# Set this to True if you want to install Nginx! # 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 # 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" OE_SUPERADMIN="admin"
# Set to "True" to generate a random password, "False" to use the variable in OE_SUPERADMIN # Set to "True" to generate a random password, "False" to use the variable in OE_SUPERADMIN
GENERATE_RANDOM_PASSWORD="True" GENERATE_RANDOM_PASSWORD="True"
OE_CONFIG="${OE_USER}-server" OE_CONFIG="${OE_USER}-server"
# Set the website name # 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.) # Set the default Odoo longpolling port (you still have to use -c /etc/odoo-server.conf for example to use this.)
LONGPOLLING_PORT="8072" LONGPOLLING_PORT="8072"
# Set to "True" to install certbot and have ssl enabled, "False" to use http # Set to "True" to install certbot and have ssl enabled, "False" to use http
ENABLE_SSL="True" ENABLE_SSL="True"
# Provide Email to register ssl certificate # Provide Email to register ssl certificate
ADMIN_EMAIL="ragemohammed5@gmail.com" ADMIN_EMAIL=""
## ##
### WKHTMLTOPDF download links ### WKHTMLTOPDF download links
## === Ubuntu Trusty x64 & x32 === (for other distributions please replace these two links, ## === Ubuntu Trusty x64 & x32 === (for other distributions please replace these two links,

Loading…
Cancel
Save