I setup my own network in Azure, all my data base servers, domain controllers and proxy servers are port of it.
I have web application, hosted to webrole which is part of my azure network by providing following config in service configuration
<NetworkConfiguration>
<Dns>
<DnsServers>
<DnsServer name="mydc" IPAddress="*.*.*.*" />
</DnsServers>
</Dns>
<VirtualNetworkSite name="myNet" />
<AddressAssignments>
<InstanceAddress roleName="mywebrole">
<Subnets>
<Subnet name="myfrentendSubnet" />
</Subnets>
</InstanceAddress>
</AddressAssignments>
I am planning to publish this webrole through my proxy server, I need to create webrole without public URL and should able to access site within my network.
URL should something like http://localhost/mywebrole/index.html
How to configure or publish webrole without public URL ?