CentOS MONO nginx 运行.net MVC3
server { listen 80;server_namelocalhost;
location / {
root/data/web;
indexindex.html index.htm;
#fastcgi_index Default.aspx;
fastcgi_pass127.0.0.1:9000;
include /opt/nginx/conf/fastcgi_params;
}
error_page 500 502 503 504/50x.html;
location = /50x.html {
root html;
}
红色部分是修改的地方。
页:
[1]