This is almost a wiki post, but the MonoSetEnv MONO_IOMAP=all
options does not work for me in Apache2 w/ Ubuntu as specified in what I understand is the official doc.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
MonoAutoApplication disabled
MonoSetEnv MONO_IOMAP=all
MonoDebug true
MonoApplications "/myapp:/pathto/myapp"
MonoServerPath "/usr/bin/mod-mono-server4"
...
There seems to be a new syntax to specify it. MonoIOMAP all
as in the following:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
MonoAutoApplication disabled
MonoIOMAP all
MonoDebug true
MonoApplications "/myapp:/pathto/myapp"
MonoServerPath "/usr/bin/mod-mono-server4"
Is this specific to Ubuntu or mono-server4?
Most posts still mention the MonoSetEnv
way, I only found this one related to an orchard CMS issue that hinted me to the new syntax...
Versions in use
Ubuntu Server 12.04.2 LTS
Server version: Apache/2.2.22 (Ubuntu)
Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-1ubuntu2.2)
mono-server4