同一个Meteor应用程序的多个域 - 如何获取URL

时间:2015-10-20 12:53:46

标签: meteor nginx

我需要在几个域(例如customer1.com和customer2.com)上提供meteor-app,并根据它运行的域,它应该提供不同的css文件并稍微改变它的行为。

我使用nginx作为代理将所有传入流量(某些特殊子域除外)转发到此webapp。

(如何)可以获取在流星内访问应用程序的URL?

1 个答案:

答案 0 :(得分:1)

如果您正在使用iron-router,则可以从请求对象中获取主机

Router.route('/testHost', function() {
  this.response.end(this.request.headers.host);
  //the page will print out something like 127.0.0.1:3000 
}, {where: 'server'});