2
My problem is this, I’ve been developing a Single-Page Application
which in the end will be posted on a server DMZ
. On the other side I’ll have one API
who will receive the requisitions from my front
, the problem is : my client will have a copy of the front on his machine, and when making the request I will have to release my local network (where is the API
), making the concept of DMZ
only 50%.
Has anyone ever had this problem ? Any suggestions ?
Put your API on the DMZ. Implement a local network service that establishes a communication channel with the API - Queue messaging, TCP LAN connection -> DMZ, etc. Route requests through the channel.
– OnoSendai
Any article or tutorial that explains this @Ibotinelly? It’s something new for me and a majority. It might be nice to ask a question and answer the same.
– Giancarlo Abel Giulian
@Giancarloabelgiulian posted as reply, thanks for the suggestion.
– OnoSendai