Hi,
Due to security restrictions I am unable to reach my production IIS server from the machine on which Radzen is running. Is there a step by step guide for deploying the published ,zip to IIS?
Many thanks
Hi,
Due to security restrictions I am unable to reach my production IIS server from the machine on which Radzen is running. Is there a step by step guide for deploying the published ,zip to IIS?
Many thanks
Hi @edcredegas,
We don't have an official step by step guide for deploying to IIS. There aren't any specific steps - just create a new virtual directory and unzip the app in it.
Hi Korchev
Thanks as always for the swift response. I opted to try and deploy the app to IIS on my development machine to work through any issues before tackling the deployment server.
The app launches to the login screen but immediately flags as invalid user or password with nothing input. Neither admin nor the users I have added are recognised. Logs only report that the logins and users are invalid no other clues.
I did see similar behavior running the app through BRS after upgrading which was sorted using:
dotnet dev-certs https --clean
dotnet dev-certs https --trust
Which makes me think that the deployed app isn’t able to work with the hashs recorded when running through BRS. accessing keys certificates etc. Have I missed a step?
Advice on where to look next or whether the logs can be extended to see what is really going on would be much appreciated.
Regards
Deployed applications do not use the development HTTPS certificates. You need to install a production one on your server if you want security to work (it only works with HTTPS). Documented here.
Thank you, that makes sense. Ill make the changes.