Run Mendix application locally using https

0
Is is possible to run mendix application locally on https? if it is possible then which configurations need to be changed? Also the SSL certificate to be configured under which project settings? Kindly share a guide.
asked
2 answers
0

There's a good answer here that involves NodeJS:

https://forum.mendix.com/link/questions/90616

answered
0

I have ran Mendix application locally by making use of IIS and KeyCloak

  • Install and configure IIS
  • Create a self-signed Cert with whatever URL you would like on the SSL certificate and install it onto your trust store
  • Bind your port 80 on IIS to localhost (mendix application localhost URL)
  • Turn on SSL in IIS
  • Run Mendix application first and then navigate to the URL on your browser which should direct traffic to your local IIS and forward it to Mendix application
answered