第一步:下载解压Nginx(不要放在中文名目录下),先不要运行。
第二步:把ASP.NET在服务器的IIS上配置完成(不要配置主机名),不占用80端口(这里需要Nginx使用80端口)。
第三步:在防火墙中把网址的端口添加到白名单里(我这里用了8080和8081两个端口,代表两个网站。)
第三步:编辑解压缩的Nginx目录下的conf目录下的nginx.conf,可以参考一下配置: - #www.abc.com
- server {
- listen 80;
- server_name www.abc.com;
- #charset koi8-r;
- #access_log logs/host.access.log main;
- location / {
- proxy_pass http://127.0.0.1:8080;
- root E:\web;
- }
- #error_page 404 /404.html;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
- #images.abc.com
- server {
- listen 80;
- server_name images.abc.com;
- #charset koi8-r;
- #access_log logs/host.access.log main;
- location / {
- proxy_pass http://127.0.0.1:8081;
- root E:\web\Upload;
- }
- #error_page 404 /404.html;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
复制代码
第四步:用cmd进入到解压缩的Nginx目录,执行 start nginx 如果没有错误信息,打开浏览器,访问www.abc.com进行测试(如果没有域名,就访问localhost或者修改host文件来假绑定一个)
这样,当用户访问网址的时候,就会通过Nginx来进行代理了(www.abc.com是主要程序,images.abc.com下是图片静态资源) 来源:https://blog.csdn.net/5653325/article/details/80177159 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |