mod-mono

Orchard CMS on Mono

二次信任 提交于 2019-12-04 10:58:29
This question might be slightly subjective, but I am unsure where else it would be better suited. I have used Orchard on a number of projects where the server was Windows Server based - integrating with AD, SQL etc to provide a MVC based portal - like stealing candy from a toddler! I have been exploring MonoTouch recently, and installed Orchard on OSX under ModMono as per http://docs.orchardproject.net/Documentation/Running-Orchard-on-Mono . It all seems to run fine, and fast, but I am unsure whether to back this on a commercial venture. I have always used MySQL or MSSQL as the DB, whereas my

Mono 2.4, AutoHosting and MVC

雨燕双飞 提交于 2019-12-04 01:42:42
问题 Can mod_mono's AutoHosting be modified to support ASP.NET? ATM it doesn't really work: Link. / works, but the runtime ignores Global.asax altogether and doesn't follow the routing conventions. 回答1: The purpose of AutoHosting in Mono is to make it as easy as possible for someone to quickly get an ASP.NET site hosted on Mono by reducing the amount of effort needed to configure the server; however, it does so by hosting file types which have been configured as ASP.NET file types. You can find

Basic Mono installation wont work

谁都会走 提交于 2019-12-01 20:13:31
问题 Am using a CentOS 5.3 box as prod server and am trying to get mono running there. after much sifting i managed to install version 2.10.2 via yum. i installed also xsp and mod_mono the same way and created a simple hello world web page. thing is its not running. iam guessing something is up with my config files which are responsible for this. Being a newbie on both linux and apache configuration, i dont know whats wrong. I have tried to follow some relative responses on the site but i cant get

Mono 2.4, AutoHosting and MVC

好久不见. 提交于 2019-12-01 08:20:25
Can mod_mono's AutoHosting be modified to support ASP.NET? ATM it doesn't really work: Link . / works, but the runtime ignores Global.asax altogether and doesn't follow the routing conventions. The purpose of AutoHosting in Mono is to make it as easy as possible for someone to quickly get an ASP.NET site hosted on Mono by reducing the amount of effort needed to configure the server; however, it does so by hosting file types which have been configured as ASP.NET file types. You can find the file extensions it is configured to host in the mod_mono.conf file. Since MVC Routing avoids using file

How do I host multiple MVC3 sites on a single virtual host running Apache2?

守給你的承諾、 提交于 2019-11-30 17:08:46
I'm trying to configure mod_mono with Apache2 on OSX. I would like to run multiple MVC3 projects on the same virtual host, but for some reason only the first one listed is working. Any help on this would be much appreciated as there is not much documentation on this. I've tried a lot of different config options, none of which seem to work. Listen *:9005 <VirtualHost *:9005> DocumentRoot "/Library/WebServer/vhosts/api" ServerName api MonoAutoApplication disabled Alias /gamecenter "/Library/WebServer/vhosts/api/gamecenter" AddMonoApplications gamecenter "/gamecenter:/Library/WebServer/vhosts/api

How do I host multiple MVC3 sites on a single virtual host running Apache2?

社会主义新天地 提交于 2019-11-30 00:30:50
问题 I'm trying to configure mod_mono with Apache2 on OSX. I would like to run multiple MVC3 projects on the same virtual host, but for some reason only the first one listed is working. Any help on this would be much appreciated as there is not much documentation on this. I've tried a lot of different config options, none of which seem to work. Listen *:9005 <VirtualHost *:9005> DocumentRoot "/Library/WebServer/vhosts/api" ServerName api MonoAutoApplication disabled Alias /gamecenter "/Library