啥也没写
分类: LINUX
2009-06-24 17:13:14
装过程如下
1.安装nginx
sudo apt-get update
sudo apt-get install nginx
2.编译安装mono 2.0
//安装必需的包,以免编译出错
sudo apt-get build-dep mono
wget
tar jvxf mono-2.0.tar.bz2
cd mono-2.0
./configure --prefix=/usr/local
make
sudo make install
编译的时候需要花费点时间。安装完毕后可以通过“mono -V”查看mono版本
3.安装fastcgi-mono-server
sudo apt-get install subversion
svn co fastcgi-mono-server
cd fastcgi-mono-server/
./autogen.sh
make
sudo make install
因为fastcgi-mono-server源代码需要用SVN来获取,所以我们先安装了subversion 。
4.配置nginx
sudo mv /etc/nginx/sites-enabled/default ../
sudo nano /etc/nginx/sites-enabled/default
把nginx-config.txt里的内容复制到/etc/nginx/sites-enabled/default文件里,默认目录位于/var/www里。如果不熟悉nano,可以参考Nano 快捷键。然后运行下面脚本启动nginx和fastcgi-mono-server2。
sudo /etc/init.d/nginx start
sudo fastcgi-mono-server2 /socket=tcp:9000 &
echo "hello" >/var/www/index.aspx
访问对应的地址不出意外就可以看见可爱的hello了。
5.安装aspx探针
cd /var/www
wget
unzip aspnetsysinfo-revision_23.zip
输入对应的info.aspx,应该就会正常显示了。