diff options
Diffstat (limited to 'ansible/odoo')
-rw-r--r-- | ansible/odoo/odoo.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ansible/odoo/odoo.yml b/ansible/odoo/odoo.yml index e5425c6..6897034 100644 --- a/ansible/odoo/odoo.yml +++ b/ansible/odoo/odoo.yml @@ -2,6 +2,11 @@ - numquam tasks: - become: yes + file: + path: /etc/odoo + state: absent + + - become: yes copy: dest: /etc/systemd/system/docker.odoo.service content: | @@ -26,8 +31,11 @@ --name odoo -t \ odoo \ --workers=5 \ + --http-port=8069 \ + --longpolling-port=8070 \ --email-from=odoo@trygvis.io \ - --smtp=172.17.0.1 + --smtp=172.17.0.1 \ + --proxy-mode [Install] WantedBy=multi-user.target |