skip to Main Content

I’m working for company which we have their own Virtual server for WordPress sites and It is running.
I don’t know much about servers and hosts but I know that we run apache on server for WordPress sites and use cPanel for server management.
I create an application with ASP.NET Core 3.1 and Core is a cross-platform.
My question is …
Can I run my application on this server without conflicting with other WordPress sites?
Thanks For Your Help!!

2

Answers


  1. As long as you run your ASP.NET Core server on a port which is not used by another server, you should be fine.

    Login or Signup to reply.
  2. Mahdi, Since you are using .NET Core you can host ASP.NET Core on Linux machines with Apache. For more details take a look at this article. To see how exactly to configure Apache reverse proxy take a look here.

    Also bear in mind that you can run an entire WordPress Application over an ASP.NET Core Host seamlessly using PeachPie which is an open-source PHP language compiler and runtime for .NET and .NET Core frameworks. If you are interested in this take a look here.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search