Wrong Ruby version with Postgres user
Chris - I'm sorry I didn't get back to you, thanks for your explanation - your information was very helpful, on to my next deployment!

5
Ruby
Nginx.conf failed
That would do it! Sometimes the file permissions or ownership will do that. I've often accidentally run a command as sudo without realizing it would change ownership of my app files and all of a su...

8
Servers
problem with like link in nested resource
Oh of course. If you look at your routes, there is no `POST` paths there. I think you can change the `resources :like` to be singular instead like this: `resource :like` and that will help.
In e...

4
Rails
2 submit button in 1 form
Here you go! I ended up getting to this topic really quickly. :)
https://gorails.com/episodes/forms-with-multiple-submit-buttons

4
General
Deploy Rails
Chris! I fixed my problem! How?
First! Open /etc/nginx/sites-enabled/default and comment location directory
It is my settings
server {
listen 80;
server_name www.artkiryan...

10
Servers
rbenv: 2.1.2 is not installed or not found
Haha, that would do it! I imagine that there are a few places where I could clean up the tutorial to show you on which machine to run which commands.

2
Servers
deploy Rails
you also may run into this issue when first doing an ssh login:
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
...

3
Rails