I managed to deploy my website in Plesk, but how do I deploy my REST web service? Which folder should I put it in? Should I buy another hosting just for the web service?
Related
We currently have an ASP.NET web site that gets deployed in IIS with several Web API services as individual apps under the web site. Additionally we stand up a VM per customer with all of our apps deployed on each VM using a sub domain to route customer specific traffic to the VM that is configured for their use. URLs are similar to those below.
https://OurAmazingCustomer.OurCleverDomain.com/app1/customers
https://OurAmazingCustomer.OurCleverDomain.com/app2/orders
https://OurAmazingCustomer.OurCleverDomain.com/app3/catalogs
https://OurAmazingCustomer.OurCleverDomain.com/app4/audits
How can we deploy, for example, app3 in a docker container without needing to change the url route, while app1, app2 and app4 remain deployed as code under IIS?
I want to create subdomain with the .NET core code and redirect that to the Amazon web Services how it will generate
I have a website developed in ASP.NET and SQL Server 2005. Now I have purchased a dedicated server to deploy the website.
I have trouble combining the Pleck Control Panel and my web server. How can I deploy my website on this web server usingPlesk Control Panel (cPanel).
Install web deploy to your server
Create your website in iis
Deploy your application using visual studio.
Add a customer to your plesk panel (just add yourself)
Add a website to customer you created (with domain you want to use with)
Go to website options and disable hosting (This will allow iis to respond request coming to that domain)
I have an asp.net web site which runs on port 443 which is https. I also have a asp.net web api which also needs to run on port 443. Because of that, I decided to create a new web application under asp.net web site. I also created a new application pool for that. The problem is that when I try to run web api project, I keep getting configuration file errors. For example it says Default Connection is already added since asp.net web site web.config adds Default Connection already before web api project does. Are there any special steps to take in order to make this work?
I have some issues with IIS7 setup that I hope someone can help me with.
I am developing an ASP.NET MVC5 application which consist of 1 web application and 1 web api application for handling REST calls. They are on the same solution in Visual Studio. While developing, they run on the localhost with two different ports as usual.
Now that I am deploying to a web server, I planned to have them running like this:
Web app: http://mydomain.com
Web api: http://mydomain.com/api
So I created a site on IIS for the web app and virtual directory under that site with an alias of "api".
The web application runs without issue and I can put a static test HTML file under api folder and it runs fine. But when I put all my published file in api folder, I got 403 Forbidden Access Denied.
My questions: can I run an ASP.NET application on a Virtual Folder? If so, what I might have done wrong? The folder permissions are the same between ./mydomain.com and ./mydomain.com/api folders.