mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-26 15:55:56 +02:00
Update to 2023-07-20 14:00
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
---
|
||||
|
||||
# Version of Odoo to deploy
|
||||
# Version of Odoo to deploy (name of the branch of the git repo
|
||||
odoo_version: 16.0
|
||||
# Odoo Build
|
||||
odoo_build: 20230323
|
||||
# URL of the archive
|
||||
odoo_archive_url: https://nightly.odoo.com/{{ odoo_version }}/nightly/tgz/odoo_{{ odoo_version }}.{{ odoo_build }}.tar.gz
|
||||
# Checksum of the archive
|
||||
odoo_archive_sha256: 9e685e4a49fd6dd15b4e71f20ae9fc31a7b1b4b70f3d79ed52dddd021804ef77
|
||||
# URL of the repository
|
||||
odoo_git_url: https://github.com/odoo/odoo.git
|
||||
|
||||
# Where will odoo be installed
|
||||
odoo_root_dir: /opt/odoo
|
||||
|
||||
# User under which odoo will run (will be created if needed
|
||||
@@ -15,20 +13,32 @@ odoo_user: odoo
|
||||
|
||||
# Database settings
|
||||
odoo_db_server: "{{ pg_server | default('localhost') }}"
|
||||
odoo_db_port: 5432
|
||||
odoo_db_name: odoo
|
||||
odoo_db_user: odoo
|
||||
# If not defined, a random password will be generated and stored under {{ odoo_root_dir }}/meta
|
||||
# odoo_db_pass: secret
|
||||
|
||||
# List of IP/CIDR which will be able to reach Odoo ports
|
||||
# This should be empty most of the time to access Odoo only from the nginx reverse proxy
|
||||
odoo_src_ip: []
|
||||
|
||||
# Public URL of the odoo instance
|
||||
# odoo_public_url: https://erp.domain.tld/
|
||||
|
||||
odoo_http_port: 8069
|
||||
odoo_longpolling_port: 8072
|
||||
odoo_ports: [ "{{ odoo_http_port }}","{{ odoo_longpolling_port }}" ]
|
||||
odoo_ports: [ "{{ odoo_http_port }}", "{{ odoo_longpolling_port }}" ]
|
||||
|
||||
odoo_workers: 4
|
||||
odoo_email: "{{ system_admin_email | default('admin' + ansible_domain ) }}"
|
||||
|
||||
# If enabled, db manager will be accessible
|
||||
odoo_db_list: False
|
||||
|
||||
# If you turn enterprise on, you need to set the SSH key of the root account of the target system
|
||||
# on your Github account, allowed to access the https://github.com/odoo/enterprise.git repo
|
||||
# You should also accept the host key for example by running
|
||||
# /bin/git ls-remote git@github.com:odoo/enterprise.git as the root user
|
||||
odoo_enterprise: False
|
||||
odoo_enterprise_git_url: git@github.com:odoo/enterprise.git
|
||||
|
Reference in New Issue
Block a user