Welcome to Microsoft Q&A Platform. Thank you for reaching out & hope you are doing well.
- We have conducted tests on our side by selecting the multiple/wildcard host type, and it prompts for the host names as expected.
- Please try clearing your browser history and cookies, signing in and out, and using the browser's private mode. If you are unable to add multiple host names through the UI, kindly use the following Azure CLI script to resolve the issue.
az network application-gateway http-listener create \
--resource-group <resource-group-name> \
--gateway-name <app-gateway-name> \
--name <listener-name> \
--frontend-ip <frontend-ip-config-name> \
--frontend-port <frontend-port-name> \
--host-names "site1.com,site2.com,site3.com" \
--protocol Http # Or Https if you have an SSL cert
For your reference: https://learn.microsoft.com/en-us/azure/application-gateway/tutorial-multiple-sites-cli
- The above image which you have mentioned shows you're configuring an HTTP listener (Port 80).
- If you intend to use HTTPS, make sure you have an SSL certificate uploaded to your Application Gateway and adjust the commands/code accordingly.
Kindly let us know if the above helps or you need further assistance on this issue.
Thanks,
Sai.