Using nginx on host OS instead of image?

I’ve modified the compose file to not install the nginx container. What port and path should my nginx configuration use to reverse proxy into the PHP app? I understand it’s running internally on port 9000? Thank you.

yes, fpm is listening on tcp/9000 in the app container. don’t forget to expose the port and deal with static content somehow (i hope you don’t plan to push it through fpm which would be remarkably stupid).

if you have any other questions, docker has excellent documentation. start there.

Thank you. I ended up just leaving it as-is and redirecting my host’s nginx requests to the one included with the TTRSS setup. It’s a extra hop but I guess that’s fine.

Is this setup common?