MVC4 site Mono 3.2.1 ubuntu 13.04 Nginx Mobile Views
本文关键字:Nginx Mobile Views ubuntu site Mono MVC4 | 更新日期: 2023-09-27 18:36:54
我已经设置了一个运行从github和nginx构建的mono 3.2.1的生产服务器。一切正常,常规子域和我的单一服务 mvc4 网站。我还切换到 unix 套接字而不是 tcp,因为我注意到在 ram 使用方面存在一些奇怪的行为。
到目前为止 - 我只使用了我在具有相同配置的 Windows VPS 上使用的系统资源的 10%,所以 linux 托管的 mvc 就像第一次发现切片面包一样:D
但是,尝试以下操作时,我收到一个 NotImplementException 错误:
在我的 Global.asax.cs 文件中,在 Application_Start() 下进行捆绑设置后我正在注册或至少尝试注册支票以查看它是否是移动设备,从而为我的 Index.Mobile.cshtml 提供服务
。这样
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
DisplayModeProvider.Instance.Modes.Insert(0, new DefaultDisplayMode("iphone")
{
ContextCondition = Context =>
Context.Request.Browser["HardwareModel"] == "iPhone"
});
DisplayModeProvider.Instance.Modes.Insert(1, new DefaultDisplayMode("android")
{
ContextCondition = Context =>
Context.Request.Browser["PlatformName"] == "Android"
});
DisplayModeProvider.Instance.Modes.Insert(2, new DefaultDisplayMode("mobile")
{
ContextCondition = Context =>
Context.Request.Browser["IsMobile"] == "True"
});
}
据我所知,在单声道的aspnetwebstack中,有DisplayModeProvider(即)
https://github.com/mono/aspnetwebstack/blob/master/src/System.Web.WebPages/DisplayModeProvider.cs
但是,如果我的 Global.asax 中有这些行.cs当我尝试加载页面(在我的 webconfig 中)时,我会收到错误,指出它没有实现
任何人都可以指出我正确的方向,因为我需要这个网站为手机提供不同的页面:)
非常感谢
戴夫
现在一切都很好。
我更改了将它们添加到 DisplayModeProvider 的方式。
如果我按如下方式操作,它可以正常工作:
DisplayModeProvider.Instance.Modes.Insert(0, new DefaultDisplayMode("Mobile")
{
ContextCondition = (ctx =>
ctx.Request.UserAgent.IndexOf("iPad", StringComparison.OrdinalIgnoreCase) >= 0 ||
ctx.Request.UserAgent.IndexOf("iPhone", StringComparison.OrdinalIgnoreCase) >= 0 ||
ctx.Request.UserAgent.IndexOf("Windows Phone", StringComparison.OrdinalIgnoreCase) >= 0 ||
ctx.Request.UserAgent.Contains("Mobile Safari")||
ctx.Request.UserAgent.Contains("Android") &&
ctx.Request.UserAgent.IndexOf("Mobile", StringComparison.OrdinalIgnoreCase) <= 0
)
});