kumar
kumar

Reputation: 9387

How to check if reverse proxy is enabled once the cluster is created

After creating a service fabric cluster is there a way to find if reverse proxy is enable for the cluster?

I have check the properties of the cluster and but did not find any details there. Is there any other was we can find out where this setting is enabled.

Upvotes: 0

Views: 418

Answers (2)

kumar
kumar

Reputation: 9387

in the portal click on "NodeType"> Select one of the Nodes one of the name you can see if Reverse Proxy is enabled.

Upvotes: 0

LoekD
LoekD

Reputation: 11470

On a cluster in Azure:

  • Open https://resources.azure.com using the tree.
  • Find your service fabric cluster.
  • Look at the "nodeTypes" element.
  • If it has an element named "reverseProxyEndpointPort" the reverse proxy is enabled (and configured to the specified port number).
  • If there is no such element, the reverse proxy is not configured.

On premises:

Upvotes: 1

Related Questions