Sorry, I feel like it seems like I'm trying to by mysterious about what I'm doing: I'm not, it just got so unreasonably complicated because of my overthinking I was unsure if it was worth explaining. Let me give some context:
I've built 3 tools. The first tool is a wrapper around op25 - it executes it, and currently captures terminal output looking for particular messages and forwarding them via SSE to subscribers.
The second tool is a janus proxy, which allows me to keep my janus server in my lan and expose a reduced attack surface for Janus. I use cloudflared and nginx to provide access to the proxy. This also receives authorization tokens from my third project so a user must be authorized to get a feed.
The third tool (the main one) is a PHP Laravel based (it's just what I'm most familiar with) webserver. It sort of draws everything together, providing a player and authentication for the janus feed, and receiving status updates from the op25 wrapper. It will also call the op25 wrapper's API to execute actions on the server. The idea is that this will be built out with several features for interacting with OP25, managing users and permissions, etc.
I considered putting the third tool on the same server as op25, but I really wanted to keep my op25 and janus servers tucked inside my local lan so that the attack surface could be narrowed.
To clarify, the reason for all this was I wanted to create a way to expose my op25 feed and controls over the web, and keep the latency very low. I'm at a 4-500ms delay right now, which works for my purposes.
Hopefully that all makes sense... I know it's unnecessarily complicated, but I guess so am I.
