I have multiple and different dockerized applications, each one comes with its proper Nginx service which sends traffic to its containers based on some rules.
I need to put those applications on the same server, so I added a new Nginx in the host that will handle SSL, and forward the traffic to the correct dockerized Nginx based on some rules.
Question: Is it ok to use Nginx in the host which will forward traffic to multiple different dockerized Nginx? Does it have any known problems? will that affect performance?