apache和mod_mono调试

时间:2013-10-15 10:23:59

标签: asp.net apache mono debian

我安装了apache2和mod_mono。 问题是,当我请求http://myvirtual.mynetwork/My.Services.WebsiteComms.test.aspx时,文件被下载,而不是像aspx处理程序那样执行。

启用mod_mono,一些有用的设置:

(已经应用)/etc/rc.local:

if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then
        /sbin/modprobe binfmt_misc
    mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
fi
if [ -e /proc/sys/fs/binfmt_misc/register ]; then
        echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register
else
        echo "No binfmt_misc support"
        exit 1
fi
exit 0

的/ etc / debian_version:

7.1

/etc/mono-server4/mono-server4-hosts.conf:

<IfModule mod_mono.c>
  MonoUnixSocket default /tmp/.mod_mono_server4
  MonoServerPath default /usr/bin/mod-mono-server4
  AddType application/x-asp-net .aspx .ashx .asmx .ascx .asax .config .ascx
  MonoApplicationsConfigDir default /etc/mono-server4
  MonoPath default /usr/lib/mono/4.0:/usr/lib
</IfModule>

(此文件包含在/etc/apache2/mods-enabled/mono.conf中的apache2 config中)

/ usr / bin / mod-mono-server4正在运行,/ tmp / .mod_mono_server4是可写入www-data用户的套接字。

我在/ srv / web上有虚拟主机的文档 我在docroot中有这些文件:

My.Services.WebsiteComms.test.aspx
My.Services.WebsiteComms.test.aspx.config
My.Services.WebsiteComms.test.exe
My.Services.WebsiteComms.test.exe.config
My.Services.WebsiteComms.test.pdb

.aspx只是一个exe文件的副本,如果我通过mono ./My.Services.WebsiteComms.test.exe运行它,它可以正常工作 aspx和exe文件都有+ x表示www-data(所有者)。

1 个答案:

答案 0 :(得分:0)

如果这是/etc/mono-server4/mono-server4-hosts.conf的全部内容,那么您没有设置任何应用程序。您需要手动或使用mono-server4-adminmono-server4-update(推荐)添加一些。