Tope Lourenco
Tope Lourenco

Reputation: 112

How to deploy mono ASP.NET MVC application to xsp?

I have a very simple asp.net mvc application that runs on http://127.0.0.1:8080/ during debug (as expected).

I am trying to export this application so everyone on my LAN can access it, which means I must deploy the application and run it on a web server. Thus, I have decided to run the application using xsp (I believe to be the easiest option).

I have xsp installed and my application works, I just don't know how to deploy it and run it with xsp.

I wonder if there is a guide that explains how to deploy and run the mvc application with xsp (I have been searching without success for one) or if someone could please explain me how to do it.

Thanks in advance!

Upvotes: 0

Views: 576

Answers (1)

muszeo
muszeo

Reputation: 2352

Are you on a *nix box?

If so, you can simply switch in to the directory and run xsp4, e.g.

$ cd /path/to/my/asp/web/site/root
$ xsp4 --nonstop

You can run it on a different port using the port switch, e.g.:

$ xsp4 --nonstop --port=80

Upvotes: 1

Related Questions