Sajan
Sajan

Reputation: 155

Accessing Reverse proxy in service fabric local cluster

I am using service fabric sdk 2.5 with VS 2015. I have seen the article How to configure and enable Azure Service Fabric Reverse Proxy for an existing on-premises cluster? and tried to access my service via reverse proxy. But I am getting a message "Unable to connect". I have the below settings in FabricHostSettings.xml

<Parameter Name="HttpApplicationGatewayListenAddress" Value="19081" />
<Parameter Name="HttpApplicationGatewayProtocol" Value="http" />

Can anyone help to test reverse proxy setup in local dev cluster

Upvotes: 0

Views: 2064

Answers (1)

Mardoxx
Mardoxx

Reputation: 4482

Reverse proxy appears enabled by default now for local dev cluster. Check clusterManifest.xml and FabricHostSettings.xml in C:\SfDevCluster\Data for configured ports. Default is 19081.

Upvotes: 2

Related Questions