美文网首页
nginx反向代理配置

nginx反向代理配置

作者: 大菜鸟呀 | 来源:发表于2018-12-16 01:24 被阅读6次

    server {
    listen 80;
    server_name 127.0.0.1;
    location / {
    root html;
    index index.html index.htm;
    }
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    root html;
    }
    }

    server {
    listen 80;
    server_name www.abc.com;

        location / {
             proxy_pass http://127.0.0.1:3000;
             root blog;
       }
    

    }

    相关文章

      网友评论

          本文标题:nginx反向代理配置

          本文链接:https://www.haomeiwen.com/subject/jcozhqtx.html