刚发现琥珀...看起来不错!如何在Ubuntu服务器上部署示例应用程序?是否应该像Rails一样将路径路由到public来完成?还是结构的其他部分?

谢谢你的建议。

最佳答案

琥珀色将为您提供静态 Assets ,只需将nginx指向端口3000。

这是nginx配置的良好起点,因为它是端口3000上运行的Amber的前端:

upstream amber {
  server 127.0.0.1:3000;
}

server {
  listen 80 default_server;
  listen [::]:80 default_server;

  root /var/www/html;
  index index.html index.htm index.nginx-debian.html;

  server_name _;

  location / {
    proxy_pass http://amber;
  }
}

然后,使用AMBER_ENV=production启动Amber:
#!/bin/bash

set -euo pipefail
IFS=$'\n\t'

npm install
npm run release
shards build app --production

# if you need it
# export DATABASE_URL="postgres://user:password@hostname:port/database_name"
export AMBER_ENV="production"

exec bin/app

所有这些都假设您的琥珀色应用程序名为app

关于deployment - 如何在Ubuntu上部署Amber应用程序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48704244/

10-14 12:02