Azure 混合连接
Azure Hybrid connection
我想通过混合连接将 Web 应用程序的新功能移动到 Azure。如果该功能是旧版 Web 应用程序的一部分,我想使用相同的 URL 将对旧版本的请求重定向到内部部署。
考虑到 URL 不会改变,我们可以通过哪些方式从 azure 重定向到本地负载均衡器,反之亦然?
Example : https://xyz.app.com/default
我不确定这是否可行,因为您不想使用具有混合连接的 FQDN。您只是想使用一个域名,以便它在混合连接的另一端使用您的 DNS 进行解析,而不是尝试在应用程序端对 DNS 服务器进行 DNS 查找。如果在本地 https://xyz 正确解析,这将起作用。
When your app makes a DNS request that matches a configured Hybrid
Connection endpoint, the outbound TCP traffic will be redirected
through the Hybrid Connection.
Note
This means that you should try to always use a DNS name for your
Hybrid Connection. Some client software does not do a DNS lookup if
the endpoint uses an IP address instead.
https://docs.microsoft.com/en-us/azure/app-service/app-service-hybrid-connections
我想通过混合连接将 Web 应用程序的新功能移动到 Azure。如果该功能是旧版 Web 应用程序的一部分,我想使用相同的 URL 将对旧版本的请求重定向到内部部署。
考虑到 URL 不会改变,我们可以通过哪些方式从 azure 重定向到本地负载均衡器,反之亦然?
Example : https://xyz.app.com/default
我不确定这是否可行,因为您不想使用具有混合连接的 FQDN。您只是想使用一个域名,以便它在混合连接的另一端使用您的 DNS 进行解析,而不是尝试在应用程序端对 DNS 服务器进行 DNS 查找。如果在本地 https://xyz 正确解析,这将起作用。
When your app makes a DNS request that matches a configured Hybrid Connection endpoint, the outbound TCP traffic will be redirected through the Hybrid Connection.
Note
This means that you should try to always use a DNS name for your Hybrid Connection. Some client software does not do a DNS lookup if the endpoint uses an IP address instead.
https://docs.microsoft.com/en-us/azure/app-service/app-service-hybrid-connections