15 Commits
16.0 ... 15.0

Author SHA1 Message Date
yhaelopez
3b48043370 refactored enterprise + third party addons clonning process 2023-12-24 12:19:38 -07:00
yhaelopez
4cd4458883 cleanup 2023-12-20 11:14:59 -07:00
yhaelopez
2d8b6921eb cleanup 2023-12-19 21:05:38 -07:00
yhaelopez
2de033d5ad auto clone third party addons and upgrade docker build 2023-12-19 21:03:29 -07:00
yhaelopez
1a65a71cb0 cleanup 2023-12-15 17:20:30 -07:00
yhaelopez
156a4bd1a7 cleanup 2023-12-15 16:50:02 -07:00
yhaelopez
f25f06a92e minor upgrade 2023-12-15 16:46:27 -07:00
yhaelopez
056d6ac873 fixed websocket to longpolling in nginx 2023-12-13 19:02:40 -07:00
yhaelopez
235b727525 fixed 15 params 2023-12-12 20:22:12 -07:00
yhaelopez
566c52813a adjusted odoo version 2023-12-12 19:18:22 -07:00
yhaelopez
cf7611fa2c solved merge conflicts 2023-12-12 19:18:07 -07:00
yhaelopez
d1fcce4d13 merge main + solve conflicts 2023-12-12 19:15:55 -07:00
Yhael S
13a05185b7 cleanup readme 2023-08-30 20:15:00 -05:00
Yhael S
97180b920e delete test user & token 2023-08-29 03:55:41 -05:00
Yhael S
e9e6f02839 changed default workers 2023-08-29 03:22:59 -05:00
3 changed files with 5 additions and 5 deletions

View File

@@ -150,7 +150,7 @@ MINIO_PROFILES="minio"
PGADMIN_PROFILES="pgadmin" PGADMIN_PROFILES="pgadmin"
# Containers' Tags # Containers' Tags
ODOO_TAG=16.0 ODOO_TAG=15.0
POSTGRES_TAG=16.1 POSTGRES_TAG=16.1
KEYDB_TAG=latest KEYDB_TAG=latest
MINIO_TAG=latest MINIO_TAG=latest
@@ -202,7 +202,7 @@ DEBUG_INTERFACE=${HTTP_INTERFACE}
HTTP_PORT=8069 HTTP_PORT=8069
DEBUG_PORT=8070 DEBUG_PORT=8070
XMLRPCS_PORT=8071 XMLRPCS_PORT=8071
GEVENT_PORT=8072 LONGPOLLING_PORT=8072
HTTP_ENABLE=True HTTP_ENABLE=True
XMLRPCS=True XMLRPCS=True
PROXY_MODE=True PROXY_MODE=True

View File

@@ -40,7 +40,7 @@ server {
} }
} }
location /websocket { location /longpolling {
proxy_pass http://odoo:8072; proxy_pass http://odoo:8072;
proxy_redirect off; proxy_redirect off;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;

View File

@@ -64,8 +64,8 @@ xmlrpcs_interface = ${XMLRPCS_INTERFACE}
; --xmlrpcs-port ; --xmlrpcs-port
xmlrpcs_port = ${XMLRPCS_PORT} xmlrpcs_port = ${XMLRPCS_PORT}
; --gevent-port | --longpolling-port (deprecated) ; --longpolling-port
gevent_port = ${GEVENT_PORT} longpolling_port = ${LONGPOLLING_PORT}
; --no-http | --no-xmlrpc ; --no-http | --no-xmlrpc
http_enable = ${HTTP_ENABLE} http_enable = ${HTTP_ENABLE}