我试图得到它,以便任何请求:
http://<myserver>:1234
被重定向到:
https://<myserver>:1234
我尝试在模块中使用“this.RequiresHttps()”,但是当我点击 urlhttp://<myserver>:1234
时,浏览器只是旋转,我猜这是因为我没有NancyHost
使用 HTTP URI 构建。我无法将 HTTP URI 与 HTTPS URI 一起添加到 NancyHost,如下所示:
var host = new NancyHost(new Uri("http://localhost:1234"), new Uri("https://localhost:1234"));
因为我会遇到注册冲突。
有任何想法吗?