CM - PPV - Flat mode - changes cannot be saved with 5000 PEOs
Problem
Changes in ProjectProductView can’t be saved if a huge amount of PEOs is linked to the project. It runs into a timeout.
Solution
Change the parameter "proxy_read_timeout" in nginx configuration. By default it has value of 60 seconds.
proxy_read_timeout 60;
It can be added to the following places:
-
into the http section of the /etc/nginx/nginx.conf (docker-container)
http { ... } -
It can also be added into /etc/nginx/conf.d/omn-ui/defaults/locations.conf to a specific location, for example
location ~* /api/config/v1/ { ... }