IIS を使用して URL をリダイレクトするには、次のように書き換えてください。
https://domain.com:8080/Context/services/.*
に
https://domain.com:8443/Context/services/.*
8080 ポートしか開いていないため、SSL のリダイレクトが必要です。
しかし同時に、 https: //domain.com:8080 /Context/xyz (またはサービス以外のもの)/.*などの他の URL がリダイレクトされることは望ましくありません。
次のことを試しましたが、機能しません。
<rule name="HTTPS Request on 8080 Redirect to HTTPS Request on 8443 for Root"
patternSyntax="ECMAScript" stopProcessing="true">
<match url="https(.*)Context/services/.*" />
<conditions>
<add input="{SERVER_PORT}" pattern="8080" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}:8443/{R:0}" />
</rule>