summaryrefslogtreecommitdiff
path: root/ansible
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-07-21 12:44:15 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2019-08-08 09:03:13 +0200
commit78b127b8df70a2060d8d08e69ac9d9fddfb4fcd1 (patch)
treecec4e25d04935a99ac899ace1540fec36fb97ee0 /ansible
parented28fe7b677e442124e93825fefb94ba0c187a26 (diff)
downloadinfra-78b127b8df70a2060d8d08e69ac9d9fddfb4fcd1.tar.gz
infra-78b127b8df70a2060d8d08e69ac9d9fddfb4fcd1.tar.bz2
infra-78b127b8df70a2060d8d08e69ac9d9fddfb4fcd1.tar.xz
infra-78b127b8df70a2060d8d08e69ac9d9fddfb4fcd1.zip
o odoo.
Diffstat (limited to 'ansible')
-rw-r--r--ansible/numquam.yml19
-rw-r--r--ansible/odoo/odoo.yml10
2 files changed, 25 insertions, 4 deletions
diff --git a/ansible/numquam.yml b/ansible/numquam.yml
index 35fff62..e423886 100644
--- a/ansible/numquam.yml
+++ b/ansible/numquam.yml
@@ -57,10 +57,11 @@
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
location / {
- try_files $uri @proxy;
- }
+ # try_files $uri @proxy;
+ # }
+ #
- location @proxy {
+ # location @proxy {
proxy_set_header Host $host;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# proxy_set_header X-Forwarded-Proto $scheme;
@@ -69,6 +70,18 @@
proxy_read_timeout 300s;
proxy_send_timeout 300s;
}
+
+ location /longpolling {
+ proxy_pass http://127.0.0.1:8070;
+ }
+
+ # # cache some static data in memory for 60mins
+ # location ~* /web/static/ {
+ # proxy_cache_valid 200 60m;
+ # proxy_buffering on;
+ # expires 864000;
+ # proxy_pass http://127.0.0.1:8069;
+ # }
}
server {
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