MyBB Community Forums

Full Version: ASP .NET Core app and myBB forum on one server?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to buy VPS (Debian/Ubuntu) and host my ASP .NET Core app and myBB forum on this machine. How can I configure Apache ( and everything what is needed ) to get something like this:
  • mydomain.com targets ASP .NET app
  • mydomain.com/forum or forum.mydomain.com targets myBB forum.
I had never dig into Apache configuration so I don't know how to do this. Any help will be appreciated.
You should be able to do this using Location blocks inside Apache: http://httpd.apache.org/docs/current/mod...l#location

So you'd configure the base location for the VirtualHost to point to your ASP .NET app, and a location for "/forum" to point to MyBB.