Hi, we are hosting our Mendix apps using Docker. Today I deployed the new Private PDF Document Generation Service container and I ran into some issues.
Currently, the Document Generation module sends the application URL from the ApplicationRootUrl runtime setting. That does not work well for me because I am using my app behind a reverse proxy (used for SSL termination), and I need to set the ApplicationRootUrl to my public URL for the OIDC module to work correctly. This leads to the PDF generator failing to request the page because inside a Docker network the domain names are different. I was able to work around this by connecting the generator to my proxy, but this solution is not very nice nor safe.
So I would like to have an option to change the Application URL that will be used for document generation. Maybe add a constant to the Document Generation module which, when set, will override the default URL.