我正在做一个angular-fullstack应用程序并使用
在我的app.js文件中创建了一个管理子域名var subdomainOptions = {
base: 'localhost' //base is required, you'll get an error without it.
};
app.use(require('subdomain')(subdomainOptions));
app.get('/subdomain/admin/', function(request, response) {
response.end('hey it works');
});
我的管理页面是一个完整的项目模板,它运行在另一个localhost端口上。
知道最终我的应用程序将托管在服务器上,最佳做法是什么:
让两个项目(app和admin)并排运行,并将它们链接在一起
在我的应用中集成管理模板,这需要更改很多东西(我的应用程序是基于组件的,模板不是)
我没有想到的另一个想法
感谢任何帮助和信息:)