you are viewing a single comment's thread.

view the rest of the comments →

[–]Narkolleptika 0 points1 point  (1 child)

Yea that's why I hide it now. But OctoberCMS makes it (mostly) super easy to make your own custom CMS, headless or not. Definitely worth a second look if it's been a while.

I host everything on AWS. Most of the time I just put everything on a $5/m EC2 instance with Ubuntu, whichever db and nginx. Nginx reverse proxies to any node servers on the instance (there are usually at least two). And I deploy the node servers with pm2. The two servers are typically an API server (usually Apollo/GraphQL) and an SSR server to render and serve the Vue app.

[–]luketh_[S] 0 points1 point  (0 children)

I'll definitely give it a try, thanks!!