Skip to content

Instantly share code, notes, and snippets.

View eneldoserrata's full-sized avatar

Eneldo Serrata eneldoserrata

View GitHub Profile
@eneldoserrata
eneldoserrata / Odoo nginx configuration sample.nginx.conf
Last active October 12, 2023 18:50
Odoo localhost nginx configuration
upstream odoo {
server localhost:8069 weight=1 fail_timeout=3000s;
}
upstream polling {
server localhost:8072 weight=1 fail_timeout=3000s;
}