Home > front end >  Uploading ASP.net & Angular application on Tomcat server
Uploading ASP.net & Angular application on Tomcat server

Time:01-18

I have just finished the local development of my Web API (ASP.net) and the User interface (AngularJs) and I would like to put it in a Tomcat server. I really need help getting this done.

I really have no ideas

CodePudding user response:

Apache Tomcat is for Java-based applications and will not work. If you are on Linux you would use something like nginx or apache. If you are on windows, you would setup your ASP.NET Core site in IIS or as a windows service. If you have the option, I recommend hosting on a cloud provider such as Azure.

  • Related