Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
In general Nginx configuration I use this configuration for Nginx reverse proxy to Odoo:
upstream odoo12a {
server 127.0.0.1:8012;
}
upstream odoo12a-im {
server 127.0.0.1:8072;
}
server {
listen 80;
server_name www.domain.com;
rewrite ^(.*) https://$host$1 permanent;
}...
I am trying to run odoo under dockers, when I run the magnet I stay here and without touching anything I run.
I don't know if I have to add information to:
volume allocation,
If I leave it blank, it will fill it in later.
but it appears to me that this address is not mounted,
and...
I am new here. I just renewed the Lets'Encrypt suddenly my odoo page stops loading anything. Such as below:
I have no idea what happend. But when i place the code in directives in ngnix from
Apache & nginx Settings
such as:
location ~ ^/.* {
proxy_redirect off;
proxy_set_header Host...
Hey
Plesk 17.5.3#55 (multi server setup, hence not upgradable)
I'm (unfortunately) running an odoo server within a docker. The database for this odoo inst is located on a remote host. The setup uses default ports (odoo: 8069, 8071 and 8072; redis: 6379, running in a docker as well on the same...
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...