浏览器同步代理中间件

时间:2016-04-06 09:45:42

标签: nginx proxy gulp middleware browser-sync

我对代理中间件有疑问

我像这样初始化Browser-Sync:

gulp.task('browser-sync', function() {
    files = [
        '**/*.php'
    ];
    browserSync.init(files,{
        open:false,
        port: 3000,
        ui: {
            port: 3000 + 1
        },
        proxy: {
            baseDir: "./",
            target : "http://example.com",
        }
    });
});

我使用nginx代理http://127.0.0.1:3000

server {
    listen EXTERNAL_IP:80;
    server_name development.example.com;
    location / {
        proxy_pass http://127.0.0.1:3000;
    }
}

但浏览器同步调用127.0.0.1:3000而不是http://development.example.com 如何告诉浏览器同步它应该调用http://development.example.com? 谢谢!

1 个答案:

答案 0 :(得分:0)

server {
    listen EXTERNAL_IP:80;
    server_name development.example.com;
    location / {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_pass http://127.0.0.1:3000;
    }
}

这实际上是一个nginx的事情:)