I want to do a slot deployment in Azure that automatically swaps the slots if deployment is successful. For that I have an endpoint that returns 200 if everything's fine, returns nothing if anything's wrong (no response).
I have this code in my web.config:
<applicationInitialization doAppInitAfterRestart="true">
<add initializationPage="/validate" />
</applicationInitialization>
My app does not run on port 80. Will it still find the app and request the page ?
PS.: I can't test this without opening a pull request and getting it merged. And the team prefers to keep the project's history clean.