yuxing 发表于 2018-11-16 07:14:09

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]
查看完整版本: CentOS MONO nginx 运行.net MVC3