DIY node.js server on Amazon EC2
11–15 of 15 posts
Re: DIY node.js server on Amazon EC2
#12I've used this recipe for a couple sites of mine, including the blog itself. The ups and downs of beta features of other node.js hosting providers was becoming a hindrance so I decided to roll my own.
Re: DIY node.js server on Amazon EC2
#13Re: DIY node.js server on Amazon EC2
#14People were having issues with the init script gist... upstart simplifies things quite a bit.
Re: DIY node.js server on Amazon EC2
#15Great guide, thanks. One issue I've run into trying to push from my windows 7 machine to my instance is a "Permission denied(publickey)" error, which I assume is due to a missing SSH key in git for my ec2 instance? Does anyone know how to tell the ec2 alias to use my instance private key when connecting?
If you're having issues with ssh picking up your keys, you can always call it out explicitly: ssh -i path/to/key.pem ec2-user@blah.amazonaws.com
Spent too much time figuring that out the hardway...