1. 程式人生 > >在Ubuntu中搭建.NET開發環境

在Ubuntu中搭建.NET開發環境

server {
         listen   30000;
         server_name  localhost;
         access_log   /var/log/nginx/mono.log;
 
         location / {
                 #root /usr/share/nginx/www;
         root /home/hys/Mono/sites/mysite;
                 index index.html index.htm default.aspx Default.aspx;
                 fastcgi_index Default.aspx;
                 fastcgi_pass 127.0.0.1:9000;
                 include /etc/nginx/fastcgi_params;
         }
 }