On premise deployment error

0
In our Quvality environment, we have connected the application to a PostgreSQL database. When running the application locally, everything functions correctly without any issues. However, when we deploy the application in the IIS (Internet Information Services) environment using the Mendix Service Console, we encounter a problem. The console logs indicate that the application has started successfully and is available. Despite this, when we try to access the application using the HTTPS URL, the browser returns an error saying that the server not found (as shown in the attached screenshots). This issue seems to be related to the IIS configuration or the way HTTPS is handled in the deployed environment, even though the application appears to be up and running in the console.
asked
2 answers
0
  1. IIS Configuration

  • Open IIS Manager → Go to Sites > Your App > Bindings

  • Make sure HTTPS binding is added with:

    • Correct hostname/domain

    • Port 443

    • Valid SSL certificate

  1. DNS/Domain Setup

  • Check if domain name is pointing to the correct server

  • Use ping your-domain.com or nslookup your-domain.com to confirm

  • For test domains, add entry in C:\Windows\System32\drivers\etc\hosts

  1. Mendix Runtime Port

  • In Mendix Service Console:

    • Ensure Runtime Port is set (usually 8080)

    • App should be running on http://localhost:8080

  1. Enable ARR and URL Rewrite in IIS

  • Install Application Request Routing (ARR) and URL Rewrite

  • Enable proxy support in ARR settings

  • Create a URL Rewrite rule:

    • Forward https://your-domainhttp://localhost:8080

  1. Firewall Check

  • Open port 443 in Windows Firewall

  • Use netstat -an | find ":443" to check if port is listening

  1. Certificate Check

  • Ensure SSL certificate is:

    • Installed correctly

    • Matches your domain

    • Not expired

  1. Test Access Locally

  • From the server, open:

    • https://localhost → test IIS

    • http://localhost:8080 → test Mendix app directly

  1. Logs and Errors

  • Check Mendix runtime logs for errors

  • Use browser console (F12 → Network tab) to see what fails

answered
0

Hi Thanks for  your reply we have done all these things above mentioned but still we are getting "Server Not Found " error 

answered