在 Linux 操作系统中使用 Nginx 运行 ASP.NET 4(5)

注意 /etc/nginx/nginx.conf 文件中第 89 行 fastcgi_index 后面只能跟一个参数,指明在 ASP.NET 网站的主目录的默认页面文件是什么,我在这里指定为 index.html,有些人也可能会喜欢用 default.aspx 代替。

在 Linux 操作系统中使用 Nginx 运行 ASP.NET 4

上图中已经是完整的 /etc/nginx/fastcgi_params 文件,其中最后三行是我添加的。

在 Linux 操作系统中使用 Nginx 运行 ASP.NET 4

这个 /etc/init.d/nginx 就是 Nginx 启动、停止、重启等的脚本文件,其中第 178 行到第 179 行中我添加的,以便使 Mono FastCGI 服务随同 Nginx 一起启动。

最后,不要忘记重启 Nginx 服务,使我们修改的配置生效:

ben@linux-cotk:~> sudo /etc/init.d/nginx restart Shutting down nginx done Starting nginx done

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzzxy.html