I am trying to set up the reverse proxy config for an erp software called Odoo. Since I am using Plesk I can not configure the proxy in the normal way of Ubuntu /ect/nginx/sites_enabled/...etc
seems like the configuration needs to be put directly in the plesk.
I am trying to create a reverse proxy for nginx, however I can not get it to work. Here is my config that works on ubuntu 16.04 with NGINX only
upstream odooweb {
server 0.0.0.0:8069 weight=1 fail_timeout=300s;
}
upstream odooweb-im {
server 0.0.0.0:8072 weight=1...