我已经放弃了我正在使用的东西,并使用了最简单的代码:
class Program
{
static void Main(string[] args)
{
var nancyHost = new Nancy.Hosting.Self.NancyHost(new Uri("http://localhost:8080"));
nancyHost.Start();
Console.ReadLine();
nancyHost.Stop();
}
}
public class MainModule : Nancy.NancyModule
{
public MainModule()
{
Get["/"] = x =>
{
return "Hello world!";
};
}
}
当我浏览到
http://localhost:8080
我得到:
暂停服务
http错误503服务不可用。
我尝试了几种解决方案。包括以下几个变化:远程访问 Nancy Self Host
有任何想法吗?