更改sails app的context / uri

时间:2016-04-08 16:49:29

标签: sails.js

我正在尝试使用单个域托管多个sails应用程序。

使用nginx作为反向代理并尝试将请求路由到sails后端。有没有办法将sails应用程序的默认上下文/ uri从“/”更改为“/ sample”,“/ sample1”?

1 个答案:

答案 0 :(得分:0)

你需要改变这样的nginx配置:

location /you_app_dir {
   proxy_pass     http://your_domain.com/;
   proxy_redirect http://your_domain.com/sample;
   port_in_redirect off;
}

并在routes.js中定义样本路线:

module.exports.routes = {

  '/smaple': {
    controller: 'default',
    action: 'index'
  }
}