Hi --
I'm installing a Symfony app (which are served from a /public subfolder of the app). This means I need to first make a Nginx/PHP-FPM app, make a /public subfolder there, and then make a symbolic link Nginx/PHP-FPM app to point to that subfolder; on the website I serve that second app and all should be well.
But it's a Symfony project so URL Fopen FPM must be enabled, which is one of the three toggles (together with 'enable GZIP' and 'Exec FPM') both PHP-FPM and Symlink/PHP-FPM apps have.
My question is, to enable this functionality: Should I just enable this toggle in both the symlink-app and the underlying app? Only in the symlink-app? Only in the underlying app? (Does it matter?)
I have no idea how these interact.