You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While /webhook needs to be publicly exposed and IP gated, the internal API endpoints should not exactly be public either.
Some options:
Add some kind of static auth token
Move to separate listener. This could be another internal port or unix socket.
Kinda leaning towards 2. @tnm curious how you intend to deploy. A separate listener means you could implement your own static token auth with nginx frontend or whatever. Or in a container environment, only expose this internal api port to your app. Or only expose the unix socket to your local app. Related #6.
The text was updated successfully, but these errors were encountered:
While
/webhook
needs to be publicly exposed and IP gated, the internal API endpoints should not exactly be public either.Some options:
Kinda leaning towards 2. @tnm curious how you intend to deploy. A separate listener means you could implement your own static token auth with nginx frontend or whatever. Or in a container environment, only expose this internal api port to your app. Or only expose the unix socket to your local app. Related #6.
The text was updated successfully, but these errors were encountered: