-
I have deployed a CCF application based on version 18.5 into Azure using the DCS4_v2 VM setup instructions in your documentation. Our use case requires that customers should be able to access this service from outside Azure on their local infrastructure. Accessing the application internally on the VM with the local IP works just fine, but requests receive no response (I suspect this may be a certificate issue). Here are the contents of my cchost config.toml file:
Inbound requests are open to this VM on port 6600, and I do see that requests are getting through to the VM. I would have expected based on what I have read in prior discussion that the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
public-rpc-address would typically be set either to the public IP that routes to the VM, or to the DNS pointing to that. Setting that value to a local interface will cause problems, for example when asking the network where to reach the primary (a local IP will be returned, typically not accessible to the client). A typical configuration would look like: rpc-address = "${local_ip_address}:443" Are you able to provide any details on the connection issue you are seeing? Can you successfully telnet for example, but not open a TLS session? |
Beta Was this translation helpful? Give feedback.
public-rpc-address would typically be set either to the public IP that routes to the VM, or to the DNS pointing to that. Setting that value to a local interface will cause problems, for example when asking the network where to reach the primary (a local IP will be returned, typically not accessible to the client).
A typical configuration would look like:
rpc-address = "${local_ip_address}:443"
node-address = "${local_ip_address}:6600"
public-rpc-address = "${public_ip_address}:443"
san = "dNSName:xyz.eastus.cloudapp.azure.com" where
xyz.eastus.cloudapp.azure.com
resolves topublic_ip_address
Are you able to provide any details on the connection issue you are seeing? Can you successfully t…