how to deploy yeoman angular-fullstack project?
问题 I want to deploy a simple angular projet made with angular fullstack. https://github.com/DaftMonk/generator-angular-fullstack I tried : yo angular-fullstack test grunt build Then, in dist I got 2 folders: server and public. how to deploy them on a linux server ? with forever/node and nginx ??? I want to self host my project. thanks 回答1: 1.) Install nginx 2.) Proxy forward nginx to your node port. See Digital Oceans How-To. nginx.conf server { listen 80; server_name localhost; location / {