从Angular 5 Universal获取域名总是返回127.0.0.1

时间:2018-01-29 19:56:17

标签: node.js angular nginx

我对Angular 5应用的服务器端渲染有问题。我需要域来创建正确的链接(应用程序在不同的环境中使用,并且为每个端点创建少量软件包是个坏主意。)

所以我尝试使用堆栈中的选项,但总是得到127.0.0.1:4000作为域/主机。我认为最好的选择应该是:

server.ts

app.engine('html', (_, options, callback) => {
    const engine = ngExpressEngine({
        bootstrap: AppServerModuleNgFactory,
        providers: [
            { provide: 'request', useFactory: () => options.req, deps: [] },
            provideModuleMap(LAZY_MODULE_MAP)
        ]
    });
    engine(_, options, callback);
});

在app.component.ts中:

   constructor(@Inject(PLATFORM_ID) private platformId,
                private injector: Injector) {

        if (isPlatformServer(this.platformId)) {
            let req = this.injector.get('request');
            console.log("host: " + req.get('host'));
        } else {
            console.log('we\'re rendering from the browser, there is no request object.');
        }
    }

我还检查了NodeJS中的对象option - >它没有关于域的任何信息。 host在此定义为127.0.0.1:4000。我不知道如何从NodeJS获取它。你能帮忙或给小提示吗?

也许我的错是我错误的Nginx配置?

server {
    listen 80;
    listen [::]:80;
    listen 443 ssl;
    listen [::]:443 ssl;

    server_name mock.test.com;

    ssl_certificate /home/xxx/Projects/xsw/cert/certificate.chained.crt;
    ssl_certificate_key /home/xxx/Projects/xsw/cert/key.prv;

    root /home/xxx/Projects/xsw/;
    index index.html;

    location / {
        proxy_pass http://127.0.0.1:4202;
    }

}

1 个答案:

答案 0 :(得分:1)

我今天失去了大约10个小时,但最后我找到了解决方案。我的问题与nginx配置有关。

当我使用时:

location / {
    proxy_pass http://127.0.0.1:4000;
}

Nginx将请求中的主机更改为127.0.0.1:4000。所以解决这个问题的方法是将nginx代理编辑成:

location / {
    proxy_pass http://127.0.0.1:4000;
    proxy_set_header Host example.com;
    proxy_set_header HTTPS on;
}

我在express node.js服务器中没有更改任何内容:

server.ts

app.engine('html', (_, options, callback) => {
    const engine = ngExpressEngine({
        bootstrap: AppServerModuleNgFactory,
        providers: [
            { provide: 'request', useFactory: () => options.req, deps: [] },
            provideModuleMap(LAZY_MODULE_MAP)
        ]
    });
    engine(_, options, callback);
});

在我的app.component.ts中,我使用此配置:

   private domain: string;

   constructor(@Optional() @Inject(REQUEST) private request: any,
               @Inject(PLATFORM_ID) private platformId,
               private injector: Injector) {

        if (isPlatformServer(this.platformId)) {
            if (this.request.get('https')) {
                this.domain = 'https://' + this.request.get('host');
            } else {
                this.domain = 'http://' + this.request.get('host');
            }
        } else {
            this.domain = document.location.protocol + '//' + document.location.hostname;
        }
    }

要创建此答案,我使用StackOverflow的另一个答案:https://stackoverflow.com/a/47434417/2972087 和Nginx文档的一部分:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_set_header