Question - App Proxy
-
wrote on Jan 21, 2025, 11:10 AM last edited by joseph Jan 21, 2025, 1:50 PM
Hi Team,
Can I add multiple ports to the upstream URL?
Best regards
-
-
wrote on Jan 21, 2025, 8:33 PM last edited by
Hi Joseph,
We are using an app proxy to access the on-prem applications. The upstream URL is http://192.168.88.130:8069; however, we do need to allow one more port, which is 8072, and we are not sure how to do it. The application vendor provided the following configuration for the nginx reverse proxy for reference
Redirect websocket requests to odoo gevent port
location /websocket {
proxy_pass http://odoochat;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; proxy_cookie_flags session_id samesite=lax secure; # requires nginx 1.19.8
}
Redirect requests to odoo backend server
location / {
# Add Headers for odoo proxy mode
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_redirect off;
proxy_pass http://odoo;add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; proxy_cookie_flags session_id samesite=lax secure; # requires nginx 1.19.8
}
-
wrote on Jan 21, 2025, 8:34 PM last edited by
Adding to above, here is the documentation
https://www.odoo.com/documentation/17.0/administration/on_premise/deploy.html#https -
You have to install nginx and put those configs on the server where you deployed odoo . That is the correct place for putting those multiple port configs. Then nginx will then answer to a single port 80 which you can then put into cloudron.
-