Hi,
I have 2 Controllers in my Web API. I have to expose only one controller globally . And the other Controller should be accessed only within my network .
One thing I can do is Authentication, which will prevent others from using my local services. But I need to prevent people even from seeing the local API. How to do this?
Note : Both the services were deployed at same place.