This guide explains how to configure longpolling for an Odoo 15 instance using Nginx (jwilder) as a reverse proxy. Longpolling allows Odoo to handle real-time notifications efficiently, enabling features like live chat and instant updates.
To integrate the longpolling configuration into the Nginx reverse proxy, we first need to mount a custom configuration file. In your docker-compose.yml
file, add the following volume under the nginx
service:
volumes: - ./nginx/confs/kissa15.conf:/etc/nginx/conf.d/kissa15.conf
This ensures that the custom configuration file kissa15.conf
is loaded into Nginx inside the Docker container.
nginx/confs/
directory:upstream kissa.dz-longpolling { server 10.5.0.13:8072; # Use the longpolling port here
upstream kissa.dz-longpolling
defines a named upstream group.server 10.5.0.13:8072;
specifies the Odoo longpolling service running on port 8072.kissa.dz
. This file will contain specific configurations for handling longpolling requests.# Add these proxy settings to optimize performance proxy_buffers 16 64k; proxy_buffer_size 128k; proxy_read_timeout 300; proxy_connect_timeout 300; proxy_send_timeout 300; # Add the longpolling location location /longpolling { proxy_pass http://kissa.dz-longpolling; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 600s; proxy_connect_timeout 600s; }
proxy_buffers
and proxy_buffer_size
settings improve proxy performance.proxy_read_timeout
, proxy_connect_timeout
, and proxy_send_timeout
prevent timeouts during longpolling requests.location /longpolling
block configures Nginx to forward WebSocket-based longpolling requests to the upstream server (kissa.dz-longpolling).proxy_set_header
directives ensure proper WebSocket handling and preserve client IP addresses.After making the changes, restart the Nginx proxy container to apply the configuration:
docker-compose up && docker-compose down
To validate the configuration, run:
docker exec -it nginx-proxy nginx -t
If the configuration is correct, you should see:
nginx: configuration file /etc/nginx/nginx.conf test is successful
Finally, reload the Nginx service inside the container:
docker exec -i nginx-proxy nginx -s reload
Once the configuration is applied, your Odoo 15 instance should now be able to use longpolling effectively, improving real-time interactions such as:
Note
[options] addons_path = /mnt/extra-addons data_dir = /var/lib/odoo proxy_mode = True db_maxconn = 300 limit_memory_hard = 17180000000 limit_memory_soft = 8589000000 limit_request = 81920 limit_time_cpu = 6000 limit_time_real = 1200 max_cron_threads = 3 workers = 10 max_xmlrpc_threads = 2
— Nadir Habib 2025/03/10 12:29